From 67aaefa2dfc022e3abe43e0de7e5773b28400a38 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 18 Mar 2000 01:56:31 +0000 Subject: [PATCH] * linux-thread.c (linuxthreads_attach, linuxthreads_detach, linuxthreads_create_inferior): Fix typo in variable name: it's linuxthreads_exit_status, not linux_exit_status. --- gdb/linux-thread.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdb/linux-thread.c b/gdb/linux-thread.c index 5539e2ef9f0..2b9597db45f 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; -- 2.30.2