PR symtab/17559
[deliverable/binutils-gdb.git] / gdb / event-loop.h
index 501a56e25592fbb24ce3b1a21988a39819f11eb4..087ee3fd7b17e5572a2ed4cd9e1c47963b061a80 100644 (file)
@@ -1,6 +1,5 @@
 /* Definitions used by the GDB event loop.
-   Copyright (C) 1999, 2000, 2007, 2008, 2009, 2010
-   Free Software Foundation, Inc.
+   Copyright (C) 1999-2014 Free Software Foundation, Inc.
    Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
 
    This file is part of GDB.
@@ -76,29 +75,18 @@ typedef void (sig_handler_func) (gdb_client_data);
 typedef void (async_event_handler_func) (gdb_client_data);
 typedef void (timer_handler_func) (gdb_client_data);
 
-/* Where to add an event onto the event queue, by queue_event.  */
-typedef enum
-  {
-    /* Add at tail of queue.  It will be processed in first in first
-       out order.  */
-    TAIL,
-    /* Add at head of queue.  It will be processed in last in first
-       out order.  */
-    HEAD
-  }
-queue_position;
-
 /* Exported functions from event-loop.c */
 
+extern void initialize_event_loop (void);
 extern void start_event_loop (void);
-extern int gdb_do_one_event (void *data);
+extern int gdb_do_one_event (void);
 extern void delete_file_handler (int fd);
 extern void add_file_handler (int fd, handler_func *proc, 
                              gdb_client_data client_data);
 extern struct async_signal_handler *
   create_async_signal_handler (sig_handler_func *proc, 
                               gdb_client_data client_data);
-extern void delete_async_signal_handler (struct async_signal_handler **async_handler_ptr);
+extern void delete_async_signal_handler (struct async_signal_handler **);
 extern int create_timer (int milliseconds, 
                         timer_handler_func *proc, 
                         gdb_client_data client_data);
This page took 0.025225 seconds and 4 git commands to generate.