dreid 01/12/13 15:43:01
Modified: locks/beos thread_mutex.c
Log:
Remove an uneeded function and add the accessor thingy so we can build
apache again.
Revision Changes Path
1.5 +4 -8 apr/locks/beos/thread_mutex.c
Index: thread_mutex.c
===================================================================
RCS file: /home/cvs/apr/locks/beos/thread_mutex.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- thread_mutex.c 2001/10/28 13:05:51 1.4
+++ thread_mutex.c 2001/12/13 23:43:01 1.5
@@ -114,14 +114,7 @@
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 @@
}
return stat;
}
+
+APR_POOL_IMPLEMENT_ACCESSOR(thread_mutex)
+