diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-04-06 17:56:01 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-04-06 17:56:01 +0000 |
commit | 6d5189699cd755651791c79e9a4ab7c23484267b (patch) | |
tree | 803010a984a92847f38aa849fe736db223596195 /gdb/infttrace.h | |
parent | 85f4f2d828508af01a3726a13c73b082c4a760be (diff) | |
download | gdb-6d5189699cd755651791c79e9a4ab7c23484267b.zip gdb-6d5189699cd755651791c79e9a4ab7c23484267b.tar.gz gdb-6d5189699cd755651791c79e9a4ab7c23484267b.tar.bz2 |
2004-04-06 Andrew Cagney <cagney@redhat.com>
* hppah-nat.c (hpux_has_forked, hpux_has_vforked)
(hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
move extern declarations from here ...
* infttrace.h: ... to here.
* Makefile.in (hppah-nat.o): Update dependencies.
Diffstat (limited to 'gdb/infttrace.h')
-rw-r--r-- | gdb/infttrace.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/infttrace.h b/gdb/infttrace.h index d3330e3..b3f4092 100644 --- a/gdb/infttrace.h +++ b/gdb/infttrace.h @@ -1,6 +1,6 @@ /* Low level Unix child interface to ttrace, for GDB when running under HP-UX. - Copyright 2003 Free Software Foundation, Inc. + Copyright 2003, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -24,5 +24,10 @@ extern int parent_attach_all (int, PTRACE_ARG3_TYPE, int); extern pid_t hppa_switched_threads (pid_t gdb_pid); +extern int hpux_has_forked (int pid, int *childpid); +extern int hpux_has_vforked (int pid, int *childpid); +extern int hpux_has_execd (int pid, char **execd_pathname); +extern int hpux_has_syscall_event (int pid, enum target_waitkind *kind, + int *syscall_id); #endif |