summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2002-11-21 15:05:47 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2002-11-21 15:05:47 +0000
commit60a4e04bed30753d99be7dac071ca1f2587161f8 (patch)
tree72920914af5b0d7f4712bbc978e17dfd6cc79b6e /locks
parent3c6a95301d21b1de98985a67218c407803e718a8 (diff)
downloadlibapr-60a4e04bed30753d99be7dac071ca1f2587161f8.tar.gz
apr_proc_mutex_destroy should be exported.
Submitted By: jean-frederic clere <jfrederic.clere@fujitsu-siemens.com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64052 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r--locks/unix/proc_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/locks/unix/proc_mutex.c b/locks/unix/proc_mutex.c
index cfbf62a45..6dfabb7c1 100644
--- a/locks/unix/proc_mutex.c
+++ b/locks/unix/proc_mutex.c
@@ -63,7 +63,7 @@
#define SEM_FAILED (-1)
#endif
-static apr_status_t proc_mutex_destroy(apr_proc_mutex_t *mutex)
+APR_DECLARE(apr_status_t) apr_proc_mutex_destroy(apr_proc_mutex_t *mutex)
{
return apr_pool_cleanup_run(mutex->pool, mutex, apr_proc_mutex_cleanup);
}