diff options
author | Jim Blandy <jimb@codesourcery.com> | 2000-03-18 01:56:31 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2000-03-18 01:56:31 +0000 |
commit | 67aaefa2dfc022e3abe43e0de7e5773b28400a38 (patch) | |
tree | fa2c2f0094feaaf7b83fdc965ec8af9ba330ad2b /gdb/linux-thread.c | |
parent | 96a2c332129d63376acd8db82dc9d7753af20209 (diff) | |
download | gdb-67aaefa2dfc022e3abe43e0de7e5773b28400a38.zip gdb-67aaefa2dfc022e3abe43e0de7e5773b28400a38.tar.gz gdb-67aaefa2dfc022e3abe43e0de7e5773b28400a38.tar.bz2 |
* linux-thread.c (linuxthreads_attach, linuxthreads_detach,
linuxthreads_create_inferior): Fix typo in variable name: it's
linuxthreads_exit_status, not linux_exit_status.
Diffstat (limited to 'gdb/linux-thread.c')
-rw-r--r-- | gdb/linux-thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/linux-thread.c b/gdb/linux-thread.c index 5539e2e..2b9597d 100644 --- a/gdb/linux-thread.c +++ b/gdb/linux-thread.c @@ -1129,7 +1129,7 @@ linuxthreads_attach (args, from_tty) linuxthreads_breakpoints_inserted = 1; linuxthreads_breakpoint_last = -1; linuxthreads_wait_last = -1; - WSETSTOP (linux_exit_status, 0); + WSETSTOP (linuxthreads_exit_status, 0); child_ops.to_attach (args, from_tty); @@ -1189,7 +1189,7 @@ linuxthreads_detach (args, from_tty) linuxthreads_find_trap (inferior_pid, 1); linuxthreads_wait_last = -1; - WSETSTOP (linux_exit_status, 0); + WSETSTOP (linuxthreads_exit_status, 0); } linuxthreads_inferior_pid = 0; @@ -1601,7 +1601,7 @@ Use the \"file\" or \"exec-file\" command."); linuxthreads_breakpoints_inserted = 1; linuxthreads_breakpoint_last = -1; linuxthreads_wait_last = -1; - WSETSTOP (linux_exit_status, 0); + WSETSTOP (linuxthreads_exit_status, 0); if (linuxthreads_max) linuxthreads_attach_pending = 1; |