aboutsummaryrefslogtreecommitdiff
path: root/gdb/main.c
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
commit2c07db7ac031ac855c833c5ceed59763d4011290 (patch)
treef3b8b16cab4a7fdb12d6ecfcb8da4d0a69db086f /gdb/main.c
parent586027e6154d39127b6342ebbc4d36aee7ad3a2d (diff)
downloadfsf-binutils-gdb-2c07db7ac031ac855c833c5ceed59763d4011290.zip
fsf-binutils-gdb-2c07db7ac031ac855c833c5ceed59763d4011290.tar.gz
fsf-binutils-gdb-2c07db7ac031ac855c833c5ceed59763d4011290.tar.bz2
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/main.c')
-rw-r--r--gdb/main.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/main.c b/gdb/main.c
index a419309..4e5fd2a 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -49,12 +49,6 @@ int display_time;
int display_space;
-/* Whether this is the async version or not. The async version is
- invoked on the command line with the -nw --async options. In this
- version, the usual command_loop is substituted by and event loop which
- processes UI events asynchronously. */
-int event_loop_p = 1;
-
/* The selected interpreter. This will be used as a set command
variable, so it should always be malloc'ed - since
do_setshow_command will free it. */
@@ -253,8 +247,6 @@ captured_main (void *data)
};
static struct option long_options[] =
{
- {"async", no_argument, &event_loop_p, 1},
- {"noasync", no_argument, &event_loop_p, 0},
#if defined(TUI)
{"tui", no_argument, 0, OPT_TUI},
#endif