Browse Source

* win32-nat.c: Update copyright year.

(child_init_thread_list): Set thread linked list point to NULL so that it won't
be reused after clearing.
binutils-csl-arm-2005q1-branch
Christopher Faylor 22 years ago
parent
commit
059198c19d
  1. 6
      gdb/ChangeLog
  2. 3
      gdb/win32-nat.c
  3. 3
      gdb/windows-nat.c

6
gdb/ChangeLog

@ -1,3 +1,9 @@
2005-01-23 Christopher Faylor <cgf@timesys.com>
* win32-nat.c: Update copyright year.
(child_init_thread_list): Set thread linked list point to NULL so that
it won't be reused after clearing.
2005-01-21 Mark Kettenis <kettenis@gnu.org>
* acconfig.h (HAVE_STRUCT_REG_R_FS, HAVE_STRUCT_R_GS): Remove

3
gdb/win32-nat.c

@ -1,6 +1,6 @@
/* Target-vector operations for controlling win32 child processes, for GDB.
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
Free Software Foundation, Inc.
Contributed by Cygnus Solutions, A Red Hat Company.
@ -300,6 +300,7 @@ child_init_thread_list (void)
(void) CloseHandle (here->h);
xfree (here);
}
thread_head.next = NULL;
}
/* Delete a thread from the list of threads */

3
gdb/windows-nat.c

@ -1,6 +1,6 @@
/* Target-vector operations for controlling win32 child processes, for GDB.
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
Free Software Foundation, Inc.
Contributed by Cygnus Solutions, A Red Hat Company.
@ -300,6 +300,7 @@ child_init_thread_list (void)
(void) CloseHandle (here->h);
xfree (here);
}
thread_head.next = NULL;
}
/* Delete a thread from the list of threads */

Loading…
Cancel
Save