summaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-07-17 03:25:11 +0000
committerAndrew Cagney <cagney@redhat.com>2004-07-17 03:25:11 +0000
commita1bffbcb1cf9e43383de1d1edd81fa22abdfa05c (patch)
treeb1ed060293b0c10209e40b751ae141b37d062647 /gdb/defs.h
parent70472d37fc8ba03f9af0ea702963bd477b5f6c23 (diff)
downloadgdb-a1bffbcb1cf9e43383de1d1edd81fa22abdfa05c.tar.gz
Index: ChangeLog
2004-07-16 Andrew Cagney <cagney@gnu.org> * defs.h (event_loop_p): Replace variable declaration with macro, always 1. * main.c (captured_main): Delete options "-async" and "-noasync". (event_loop_p): Delete variable. * NEWS: Mention that "-async" and "-noasync" were removed. Index: doc/ChangeLog 2004-07-16 Andrew Cagney <cagney@gnu.org> * gdb.texinfo (Mode Options): Delete documentation on "-async" and "-noasync".
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index 8ccad526b61..deee6bfd4dc 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -1216,8 +1216,11 @@ struct target_waitstatus;
struct cmd_list_element;
/* Should the asynchronous variant of the interpreter (using the
- event-loop) be enabled? */
-extern int event_loop_p;
+ event-loop) be enabled? */
+/* NOTE: cagney/2004-06-10: GDB changed to always uses the event-loop.
+ A follow-on cleanup is to eliminate references to
+ "event_loop_p". */
+#define event_loop_p 1
extern void (*deprecated_pre_add_symbol_hook) (const char *);
extern void (*deprecated_post_add_symbol_hook) (void);