summaryrefslogtreecommitdiff
path: root/include/apr_signal.h
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-11-10 08:35:16 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-11-10 08:35:16 +0000
commit05e4db1ad0daefbe23c7bd4bf95dcc26117791ee (patch)
tree0706c9dcb9d80ee34b95fef0edcc656533723049 /include/apr_signal.h
parent4af567a62faf58f6758c4c744b1dad30520ef7a8 (diff)
downloadapr-05e4db1ad0daefbe23c7bd4bf95dcc26117791ee.tar.gz
Go through doxygen output and remove as many errors and warnings as I could.
No code changes. (Note removal of #define duplication in apr_poll.h/apr_network_io.h of the APR_POLL* values. This appears to have been an oversight and is now just in apr_poll.h) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_signal.h')
-rw-r--r--include/apr_signal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apr_signal.h b/include/apr_signal.h
index 3a0a013b4..ce5da1550 100644
--- a/include/apr_signal.h
+++ b/include/apr_signal.h
@@ -76,7 +76,7 @@ extern "C" {
* @{
*/
-#if APR_HAVE_SIGACTION
+#if APR_HAVE_SIGACTION || defined(DOXYGEN)
#if defined(DARWIN) && !defined(__cplusplus) && !defined(_ANSI_SOURCE)
/* work around Darwin header file bugs
@@ -90,13 +90,13 @@ extern "C" {
#define SIG_ERR (void (*)(int))-1
#endif
+/** Function prototype for signal handlers */
typedef void apr_sigfunc_t(int);
-/* ### how to doc this? */
/**
* Set the signal handler function for a given signal
* @param signo The signal (eg... SIGWINCH)
- * @parm the function to get called
+ * @param func the function to get called
*/
APR_DECLARE(apr_sigfunc_t *) apr_signal(int signo, apr_sigfunc_t * func);