summaryrefslogtreecommitdiff
path: root/locks/beos
diff options
context:
space:
mode:
authorDavid Reid <dreid@apache.org>2001-12-13 23:43:01 +0000
committerDavid Reid <dreid@apache.org>2001-12-13 23:43:01 +0000
commitd6f4936b58e07372b784e9277f7974af5a3d2430 (patch)
treedf0fd8aa1e81428644e7c13c27e9f2cdc5d01f12 /locks/beos
parent297fb6c6a372ee7884181f2eca4da5b5aee44837 (diff)
downloadapr-d6f4936b58e07372b784e9277f7974af5a3d2430.tar.gz
Remove an uneeded function and add the accessor thingy so we can build
apache again. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks/beos')
-rw-r--r--locks/beos/thread_mutex.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/locks/beos/thread_mutex.c b/locks/beos/thread_mutex.c
index 03d669885..b0b525565 100644
--- a/locks/beos/thread_mutex.c
+++ b/locks/beos/thread_mutex.c
@@ -114,14 +114,7 @@ APR_DECLARE(apr_status_t) apr_thread_mutex_create_np(apr_thread_mutex_t **mutex,
return APR_ENOTIMPL;
}
#endif
-
-APR_DECLARE(apr_status_t) apr_thread_mutex_child_init(apr_thread_mutex_t **mutex,
- const char *fname,
- apr_pool_t *pool)
-{
- return APR_SUCCESS;
-}
-
+
APR_DECLARE(apr_status_t) apr_thread_mutex_lock(apr_thread_mutex_t *mutex)
{
int32 stat;
@@ -186,3 +179,6 @@ APR_DECLARE(apr_status_t) apr_thread_mutex_destroy(apr_thread_mutex_t *mutex)
}
return stat;
}
+
+APR_POOL_IMPLEMENT_ACCESSOR(thread_mutex)
+