X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fposix-hdep.c;h=e9db5761048bee5d3efc7e24d71c81f425f731c0;hb=a14d1f4dfc08edc8fe92b17b36a55d89203fb89f;hp=90cab8f5b3c2f3e90a39f1c63146397a6f0347e1;hpb=618f726fcb851883a0094aa7fa17003889b7189f;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/posix-hdep.c b/gdb/posix-hdep.c index 90cab8f5b3..e9db576104 100644 --- a/gdb/posix-hdep.c +++ b/gdb/posix-hdep.c @@ -30,16 +30,3 @@ 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); -}