bjh 01/08/30 09:26:23
Modified: threadproc/os2 thread.c
Log:
OS/2: Add stubs for apr_thread_once functions to fix link. Will fill them in
once I figure out WTF they do....
Revision Changes Path
1.26 +14 -0 apr/threadproc/os2/thread.c
Index: thread.c
===================================================================
RCS file: /home/cvs/apr/threadproc/os2/thread.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- thread.c 2001/08/10 21:04:48 1.25
+++ thread.c 2001/08/30 16:26:22 1.26
@@ -239,3 +239,17 @@
}
APR_POOL_IMPLEMENT_ACCESSOR_X(thread, cntxt)
+
+
+
+APR_DECLARE(apr_status_t) apr_thread_once_init(apr_thread_once_t **control,
+ apr_pool_t *p)
+{
+ return APR_ENOTIMPL;
+}
+
+APR_DECLARE(apr_status_t) apr_thread_once(apr_thread_once_t *control,
+ void (*func)(void))
+{
+ return APR_ENOTIMPL;
+}