diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2002-09-10 19:53:24 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2002-09-10 19:53:24 +0000 |
commit | 99656a61405b59c6dec59fe8a88859f712a35c69 (patch) | |
tree | 28bf87de80862d89bc80cad4be208aff614330c4 /gdb/event-loop.c | |
parent | 9464e2329392a8aefeaecc4ec0cb6a5d05d29d17 (diff) | |
download | gdb-99656a61405b59c6dec59fe8a88859f712a35c69.zip gdb-99656a61405b59c6dec59fe8a88859f712a35c69.tar.gz gdb-99656a61405b59c6dec59fe8a88859f712a35c69.tar.bz2 |
* event-loop.c (gdb_do_one_event): Make public.
* event-loop.h (gdb_do_one_event): Declare.
Diffstat (limited to 'gdb/event-loop.c')
-rw-r--r-- | gdb/event-loop.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/event-loop.c b/gdb/event-loop.c index 4e42d7e..03eb41c 100644 --- a/gdb/event-loop.c +++ b/gdb/event-loop.c @@ -210,7 +210,6 @@ static void create_file_handler (int fd, int mask, handler_func * proc, gdb_clie static void invoke_async_signal_handler (void); static void handle_file_event (int event_file_desc); static int gdb_wait_for_event (void); -static int gdb_do_one_event (void *data); static int check_async_ready (void); static void async_queue_event (gdb_event * event_ptr, queue_position position); static gdb_event *create_file_event (int fd); @@ -346,7 +345,7 @@ process_event (void) can happen if there are no event sources to wait for). If an error occurs catch_errors() which calls this function returns zero. */ -static int +int gdb_do_one_event (void *data) { /* Any events already waiting in the queue? */ |