From c0d21f2cc2964c76df36305771a58d639df601f7 Mon Sep 17 00:00:00 2001 From: madhum Date: Wed, 21 Apr 2004 21:45:38 +0000 Subject: Added two new functions apr_signal_block and apr_signal_unblock to block/unblock only certain signals. The functions are currently enabled for Unix (beos, os2). It's a null function for win32 and netware (I really don't know if they even require such a feature) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65076 13f79535-47bb-0310-9956-ffa450edef68 --- threadproc/win32/signals.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'threadproc/win32/signals.c') diff --git a/threadproc/win32/signals.c b/threadproc/win32/signals.c index 6fab4fabf..14cd9232a 100644 --- a/threadproc/win32/signals.c +++ b/threadproc/win32/signals.c @@ -53,3 +53,13 @@ const char *apr_signal_description_get(int signum) { return "unknown signal (not supported)"; } + +APR_DECLARE(apr_status_t) apr_signal_block(int signum) +{ + return APR_SUCCESS; +} + +APR_DECLARE(apr_status_t) apr_signal_unblock(int signum) +{ + return APR_SUCCESS; +} -- cgit v1.2.1