aboutsummaryrefslogtreecommitdiff
path: root/gdb/posix-hdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/posix-hdep.c')
-rw-r--r--gdb/posix-hdep.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/gdb/posix-hdep.c b/gdb/posix-hdep.c
index 6000b5e..b84e935 100644
--- a/gdb/posix-hdep.c
+++ b/gdb/posix-hdep.c
@@ -18,6 +18,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "defs.h"
+#include "event-loop.h"
#include "gdb_string.h"
@@ -50,3 +51,16 @@ gdb_select (int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
{
return select (n, readfds, writefds, exceptfds, timeout);
}
+
+/* Wrapper for the body of signal handlers. Nothing special needed on
+ POSIX platforms. */
+
+void
+gdb_call_async_signal_handler (struct async_signal_handler *handler,
+ int immediate_p)
+{
+ if (immediate_p)
+ call_async_signal_handler (handler);
+ else
+ mark_async_signal_handler (handler);
+}