]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap_r/threads.c
Restore pre-C99 preprocessor support (since rev 1.165)
[openldap] / libraries / libldap_r / threads.c
index d19400b971abe62ab6bbc430b9640c0c0c884848..9a2358c9e497b4e4ef308b37043b111a66804f90 100644 (file)
@@ -1,7 +1,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2005 The OpenLDAP Foundation.
+ * Copyright 1998-2007 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -22,7 +22,8 @@
 #include <ac/string.h>
 #include <ac/unistd.h>
 
-#include "ldap_pvt_thread.h"
+#include "ldap_pvt_thread.h" /* Get the thread interface */
+#include "ldap_thr_debug.h"  /* May redirect thread initialize/destroy calls */
 
 
 /*
@@ -37,6 +38,8 @@ int ldap_pvt_thread_initialize( void )
 {
        int rc;
        static int init = 0;
+       ldap_pvt_thread_rmutex_t rm;
+       ldap_pvt_thread_t tid;
 
        /* we only get one shot at this */
        if( init++ ) return -1;
@@ -49,6 +52,15 @@ int ldap_pvt_thread_initialize( void )
        if( rc ) return rc;
 #endif
 
+       /* kludge to pull symbol definitions in */
+       ldap_pvt_thread_rmutex_init( &rm );
+       tid = ldap_pvt_thread_self();
+       ldap_pvt_thread_rmutex_lock( &rm, tid );
+       ldap_pvt_thread_rmutex_trylock( &rm, tid );
+       ldap_pvt_thread_rmutex_unlock( &rm, tid );
+       ldap_pvt_thread_rmutex_unlock( &rm, tid );
+       ldap_pvt_thread_rmutex_destroy( &rm );
+
        return 0;
 }
 
@@ -60,6 +72,15 @@ int ldap_pvt_thread_destroy( void )
        return ldap_int_thread_destroy();
 }
 
+
+/*
+ * Default implementations of some LDAP thread routines
+ */
+
+#define LDAP_THREAD_IMPLEMENTATION
+#include "ldap_thr_debug.h"    /* May rename the symbols defined below */
+
+
 #ifndef LDAP_THREAD_HAVE_GETCONCURRENCY
 int
 ldap_pvt_thread_get_concurrency ( void )