aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2007-12-04 14:15:01 +0000
committerMaciej W. Rozycki <macro@linux-mips.org>2007-12-04 14:15:01 +0000
commit4becf47ce77f8c51564e2a3b7306b628420c4593 (patch)
treeea5048aaebebb0a19decac7e1c7ce63a7cb82abf /gdb
parentb8e22491470f07db7ac37a4140c33b417c4fd7ac (diff)
downloadgdb-4becf47ce77f8c51564e2a3b7306b628420c4593.zip
gdb-4becf47ce77f8c51564e2a3b7306b628420c4593.tar.gz
gdb-4becf47ce77f8c51564e2a3b7306b628420c4593.tar.bz2
* target.h (target_find_new_threads): Fix definition.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/target.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 358dc67..54aec11 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2007-12-04 Maciej W. Rozycki <macro@mips.com>
+
+ * target.h (target_find_new_threads): Fix definition.
+
2007-12-02 Pierre Muller <muller@ics.u-strasbg.fr>
* win32-nat.c (win32_resume): Set the trace bit
diff --git a/gdb/target.h b/gdb/target.h
index 50dd33b..6dc3685 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -885,7 +885,7 @@ int target_follow_fork (int follow_child);
/* Query for new threads and add them to the thread list. */
#define target_find_new_threads() \
- (*current_target.to_find_new_threads) (); \
+ (*current_target.to_find_new_threads) ()
/* Make target stop in a continuable fashion. (For instance, under
Unix, this should act like SIGSTOP). This function is normally