diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-19 04:58:17 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-19 04:58:17 +0000 |
commit | 4b048bc0967a115c456bf2bfb463f90564fdf519 (patch) | |
tree | cdcb1e7ed1f8eb3e1a7bf2dc42d281715dc1593c /gdb/infttrace.c | |
parent | 6ad8a379a0373bab68623cb568d2a07d96cf5df8 (diff) | |
download | gdb-4b048bc0967a115c456bf2bfb463f90564fdf519.zip gdb-4b048bc0967a115c456bf2bfb463f90564fdf519.tar.gz gdb-4b048bc0967a115c456bf2bfb463f90564fdf519.tar.bz2 |
From 2001-07-16 Rodney Brown <rbrown64@csc.com.au>:
* infttrace.c (child_thread_alive): Fix gdb_tid typo.
* somsolib.c (no_shared_libraries): Provide stub.
* xcoffsolib.c (no_shared_libraries): Provide stub.
Diffstat (limited to 'gdb/infttrace.c')
-rw-r--r-- | gdb/infttrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infttrace.c b/gdb/infttrace.c index ffcbd20..3c7cf95 100644 --- a/gdb/infttrace.c +++ b/gdb/infttrace.c @@ -3585,7 +3585,7 @@ child_has_syscall_event (int pid, enum target_waitkind *kind, int *syscall_id) int child_thread_alive (ptid_t ptid) { - lwpid_t gdp_tid = PIDGET (ptid); + lwpid_t gdb_tid = PIDGET (ptid); lwpid_t tid; /* This spins down the lists twice. |