diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-09-29 13:54:33 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-09-29 13:54:33 +0000 |
commit | 09a6b0687a60fa8349534755c5996092fcc8dffb (patch) | |
tree | a4dbef2343d56eeab9c9c71b1514192b00d416fd /gdb/linux-nat.c | |
parent | 0cd47fe1baef95a7ce7d0bd5baf3896703bae06d (diff) | |
download | gdb-09a6b0687a60fa8349534755c5996092fcc8dffb.tar.gz |
2004-09-29 Andrew Cagney <cagney@gnu.org>
* target.h (child_ops): Declare.
* inftarg.c (child_ops): Move from here ...
* target.c (child_ops): ... to here.
* wince.c (child_ops): Delete extern declaration.
* win32-nat.c (child_ops): Delete extern declaration.
* linux-nat.c (child_ops): Delete extern declaration.
* hpux-thread.c (child_ops): Delete extern declaration.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 8ecabdace69..fa14bb63fe2 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -83,8 +83,6 @@ static int debug_linux_nat; -extern struct target_ops child_ops; - static int linux_parent_pid; struct simple_pid_list @@ -599,9 +597,6 @@ ptid_t trap_ptid; /* This module's target-specific operations. */ static struct target_ops linux_nat_ops; -/* The standard child operations. */ -extern struct target_ops child_ops; - /* Since we cannot wait (in linux_nat_wait) for the initial process and any cloned processes with a single call to waitpid, we have to use the WNOHANG flag and call waitpid in a loop. To optimize |