gdb/
authorYao Qi <yao@codesourcery.com>
Tue, 23 Oct 2012 06:20:49 +0000 (06:20 +0000)
committerYao Qi <yao@codesourcery.com>
Tue, 23 Oct 2012 06:20:49 +0000 (06:20 +0000)
* event-top.c (mark_async_signal_handler_wrapper): Remove.
* event-top.h: Remove its declaration.
(async_request_quit): Call mark_async_signal_handler instead of
mark_async_signal_handler_wrapper.
(async_do_nothing, async_disconnect): Likewise.
(async_stop_sig): Likewise.
* remote.c (handle_remote_sigint): Likewise.
(handle_remote_sigint_twice): Likewise.

gdb/ChangeLog
gdb/event-top.c
gdb/event-top.h
gdb/remote.c

index 308fa218fc769e9b20a99f33a107a5f03cdaa7d1..d27f64b14f93e1e95a1902dcc40ca358fe7d554e 100644 (file)
@@ -1,3 +1,14 @@
+2012-10-23  Yao Qi  <yao@codesourcery.com>
+
+       * event-top.c (mark_async_signal_handler_wrapper): Remove.
+       * event-top.h: Remove its declaration.
+       (async_request_quit): Call mark_async_signal_handler instead of
+       mark_async_signal_handler_wrapper.
+       (async_do_nothing, async_disconnect): Likewise.
+       (async_stop_sig): Likewise.
+       * remote.c (handle_remote_sigint): Likewise.
+       (handle_remote_sigint_twice): Likewise.
+
 2012-10-23  Yao Qi  <yao@codesourcery.com>
 
        * event-top.c (sigint_token, sighup_token): Replace 'void *'
index 1e0626a48e823bc131d459595cee2c59775dc05c..5c533e4fe2546511148e1d5cdf6f3bb95218a980 100644 (file)
@@ -770,12 +770,6 @@ async_init_signals (void)
 
 }
 
-void
-mark_async_signal_handler_wrapper (void *token)
-{
-  mark_async_signal_handler ((struct async_signal_handler *) token);
-}
-
 /* Tell the event loop what to do if SIGINT is received.
    See event-signal.c.  */
 void
@@ -829,7 +823,7 @@ async_request_quit (gdb_client_data arg)
 static void
 handle_sigquit (int sig)
 {
-  mark_async_signal_handler_wrapper (sigquit_token);
+  mark_async_signal_handler (sigquit_token);
   signal (sig, handle_sigquit);
 }
 #endif
@@ -850,7 +844,7 @@ async_do_nothing (gdb_client_data arg)
 static void
 handle_sighup (int sig)
 {
-  mark_async_signal_handler_wrapper (sighup_token);
+  mark_async_signal_handler (sighup_token);
   signal (sig, handle_sighup);
 }
 
@@ -886,7 +880,7 @@ async_disconnect (gdb_client_data arg)
 void
 handle_stop_sig (int sig)
 {
-  mark_async_signal_handler_wrapper (sigtstp_token);
+  mark_async_signal_handler (sigtstp_token);
   signal (sig, handle_stop_sig);
 }
 
@@ -926,7 +920,7 @@ async_stop_sig (gdb_client_data arg)
 static void
 handle_sigfpe (int sig)
 {
-  mark_async_signal_handler_wrapper (sigfpe_token);
+  mark_async_signal_handler (sigfpe_token);
   signal (sig, handle_sigfpe);
 }
 
index 76a790e6132166d3e2c63e5fa0361adf34f1b626..76b24b84cd1523f53c1f2e5c150fe0ad80f810d4 100644 (file)
@@ -46,7 +46,6 @@ extern void handle_stop_sig (int sig);
 extern void handle_sigint (int sig);
 extern void handle_sigterm (int sig);
 extern void gdb_readline2 (void *client_data);
-extern void mark_async_signal_handler_wrapper (void *token);
 extern void async_request_quit (void *arg);
 extern void stdin_event_handler (int error, void *client_data);
 extern void async_disable_stdin (void);
index 1750bee07ebe79f373a241a17cd73d0dfc5f7621..14c5dfd59e2c389ab8e766a1e0d722e15c7643c6 100644 (file)
@@ -4862,7 +4862,7 @@ static void
 handle_remote_sigint (int sig)
 {
   signal (sig, handle_remote_sigint_twice);
-  mark_async_signal_handler_wrapper (sigint_remote_token);
+  mark_async_signal_handler (sigint_remote_token);
 }
 
 /* Signal handler for SIGINT, installed after SIGINT has already been
@@ -4872,7 +4872,7 @@ static void
 handle_remote_sigint_twice (int sig)
 {
   signal (sig, handle_remote_sigint);
-  mark_async_signal_handler_wrapper (sigint_remote_twice_token);
+  mark_async_signal_handler (sigint_remote_twice_token);
 }
 
 /* Perform the real interruption of the target execution, in response