aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2005-01-23 05:09:46 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2005-01-23 05:09:46 +0000
commit059198c19dcb28433fe4d1da6f00ae8f15faa52f (patch)
tree8a503869e6eaeffd47ef4d87b0a6e2302d62be8d
parent955b4dd3ac2b3478f1128539c4827e80a8c10002 (diff)
downloadfsf-binutils-gdb-059198c19dcb28433fe4d1da6f00ae8f15faa52f.zip
fsf-binutils-gdb-059198c19dcb28433fe4d1da6f00ae8f15faa52f.tar.gz
fsf-binutils-gdb-059198c19dcb28433fe4d1da6f00ae8f15faa52f.tar.bz2
* 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.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/win32-nat.c3
-rw-r--r--gdb/windows-nat.c3
3 files changed, 10 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1ca68e2..5f59288 100644
--- a/gdb/ChangeLog
+++ b/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
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c
index 62a3e7c..6063ab1 100644
--- a/gdb/win32-nat.c
+++ b/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 */
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 62a3e7c..6063ab1 100644
--- a/gdb/windows-nat.c
+++ b/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 */