]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap_r/thr_stub.c
ITS#4006 add stub for ldap_pvt_thread_pool_context_reset()
[openldap] / libraries / libldap_r / thr_stub.c
index 021c95335c27e37a102ba65f9876bc9c9b81ba39..03c3b1be60fbf5149ebcdf79b5f89c0f1c9ed27a 100644 (file)
@@ -1,16 +1,19 @@
+/* thr_stub.c - stubs for the threads */
 /* $OpenLDAP$ */
-/*
- * Copyright 1998-2003 The OpenLDAP Foundation, Redwood City, California, USA
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2005 The OpenLDAP Foundation.
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms are permitted only
- * as authorized by the OpenLDAP Public License.  A copy of this
- * license is available at http://www.OpenLDAP.org/license.html or
- * in file LICENSE in the top-level directory of the distribution.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.
+ *
+ * A copy of this license is available in file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
  */
 
-/* thr_stub.c - stubs for the threads */
-
 #include "portable.h"
 
 #if defined( NO_THREADS )
@@ -192,6 +195,31 @@ int ldap_pvt_thread_pool_setkey (
        return(0);
 }
 
+void ldap_pvt_thread_pool_purgekey( void *key )
+{
+}
+
+int ldap_pvt_thread_pool_pause ( 
+       ldap_pvt_thread_pool_t *tpool )
+{
+       return(0);
+}
+
+int ldap_pvt_thread_pool_resume ( 
+       ldap_pvt_thread_pool_t *tpool )
+{
+       return(0);
+}
+
+void *ldap_pvt_thread_pool_context( )
+{
+       return(NULL);
+}
+
+void ldap_pvt_thread_pool_context_reset( void *vctx )
+{
+}
+
 ldap_pvt_thread_t
 ldap_pvt_thread_self( void )
 {