summaryrefslogtreecommitdiff
path: root/threadproc/win32
diff options
context:
space:
mode:
authormadhum <madhum@13f79535-47bb-0310-9956-ffa450edef68>2004-04-22 15:55:53 +0000
committermadhum <madhum@13f79535-47bb-0310-9956-ffa450edef68>2004-04-22 15:55:53 +0000
commit6464f1b2308c8ed3658ffbf4d1605f38b447b395 (patch)
tree5749e397981426678b6b9fe1bb12c9cb97dfc530 /threadproc/win32
parente86503611c92251d6fa0e306922538bde4cb32dc (diff)
downloadlibapr-6464f1b2308c8ed3658ffbf4d1605f38b447b395.tar.gz
APR_ENOTIMPL is more appropriate (rather than APR_SUCCESS) for
apr_signal_block, apr_signal_unblock (since they're not implemented) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65078 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/win32')
-rw-r--r--threadproc/win32/signals.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/threadproc/win32/signals.c b/threadproc/win32/signals.c
index 14cd9232a..12d865edb 100644
--- a/threadproc/win32/signals.c
+++ b/threadproc/win32/signals.c
@@ -56,10 +56,10 @@ const char *apr_signal_description_get(int signum)
APR_DECLARE(apr_status_t) apr_signal_block(int signum)
{
- return APR_SUCCESS;
+ return APR_ENOTIMPL;
}
APR_DECLARE(apr_status_t) apr_signal_unblock(int signum)
{
- return APR_SUCCESS;
+ return APR_ENOTIMPL;
}