summaryrefslogtreecommitdiff
path: root/gdb/main.c
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1999-09-28 21:51:51 +0000
committerJason Molenda <jmolenda@apple.com>1999-09-28 21:51:51 +0000
commitc2d608618ce9c59098ef1cb606e89f1e44023daf (patch)
tree5e01b55506cdad787ff2eea100cb08faced43f6f /gdb/main.c
parent45e22df5a216b371e0a9fac7f21d418d136b788b (diff)
downloadgdb-c2d608618ce9c59098ef1cb606e89f1e44023daf.tar.gz
import gdb-1999-09-28 snapshot
Diffstat (limited to 'gdb/main.c')
-rw-r--r--gdb/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/main.c b/gdb/main.c
index 7ca3ecc7387..feefaa5428f 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -46,7 +46,7 @@ int display_space;
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 async_p = 1;
+int event_loop_p = 1;
/* Whether this is the command line version or not */
int tui_version = 0;
@@ -177,8 +177,8 @@ main (argc, argv)
with no equivalent). */
static struct option long_options[] =
{
- {"async", no_argument, &async_p, 1},
- {"noasync", no_argument, &async_p, 0},
+ {"async", no_argument, &event_loop_p, 1},
+ {"noasync", no_argument, &event_loop_p, 0},
#if defined(TUI)
{"tui", no_argument, &tui_version, 1},
#endif