mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 12:39:59 +00:00
* event-loop.c (gdb_do_one_event): Make public.
* event-loop.h (gdb_do_one_event): Declare.
This commit is contained in:
parent
9464e23293
commit
99656a6140
@ -1,3 +1,8 @@
|
||||
2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
* event-loop.c (gdb_do_one_event): Make public.
|
||||
* event-loop.h (gdb_do_one_event): Declare.
|
||||
|
||||
2002-09-10 Jeff Law <law@redhat.com>
|
||||
|
||||
* infttrace.c (child_resume): Simplify and rework to avoid
|
||||
|
@ -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? */
|
||||
|
@ -85,6 +85,7 @@ queue_position;
|
||||
/* Exported functions from event-loop.c */
|
||||
|
||||
extern void start_event_loop (void);
|
||||
extern int gdb_do_one_event (void *data);
|
||||
extern void delete_file_handler (int fd);
|
||||
extern void add_file_handler (int fd, handler_func * proc, gdb_client_data client_data);
|
||||
extern void mark_async_signal_handler (struct async_signal_handler *async_handler_ptr);
|
||||
|
Loading…
Reference in New Issue
Block a user