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 | a744f8636d74b69f7b66395b0a81a9701360c972 (patch) | |
tree | 73a784a41a5d520042efa63cb24fc286f60e783e /gdb/infttrace.c | |
parent | 87bcf8ff50a85d9c1cea70cf7001c1483057927a (diff) | |
download | gdb-a744f8636d74b69f7b66395b0a81a9701360c972.tar.gz |
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 ffcbd203e31..3c7cf95d806 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. |