summaryrefslogtreecommitdiff
path: root/gdb/inferior.h
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2011-09-13 19:27:00 +0000
committerPedro Alves <pedro@codesourcery.com>2011-09-13 19:27:00 +0000
commitb8b72542b2b0a5f1bdfdd1179ba1e80fa35db563 (patch)
treee261148213bf1b0a52c076e49223424115c060ef /gdb/inferior.h
parenta38d5512f8e3a15d03384106c98da13dab5c469c (diff)
downloadgdb-b8b72542b2b0a5f1bdfdd1179ba1e80fa35db563.tar.gz
2011-09-13 Pedro Alves <pedro@codesourcery.com>
* inferior.h (ALL_INFERIORS): New. * linux-thread-db.c (thread_db_find_new_threads_2): Remove check for a stopped thread. (thread_db_find_new_threads): Look for threads in all inferiors.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r--gdb/inferior.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h
index cf747a650cd..0815b65e9e1 100644
--- a/gdb/inferior.h
+++ b/gdb/inferior.h
@@ -615,6 +615,11 @@ extern void set_current_inferior (struct inferior *);
extern struct cleanup *save_current_inferior (void);
+/* Traverse all inferiors. */
+
+#define ALL_INFERIORS(I) \
+ for ((I) = inferior_list; (I); (I) = (I)->next)
+
extern struct inferior *inferior_list;
/* Prune away automatically added inferiors that aren't required