]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap_r/thr_stub.c
fix test when slapo-memberof(5) built as module (ITS#5132)
[openldap] / libraries / libldap_r / thr_stub.c
index e473e0e557ebe2dddbf0bffe5cf4841aab27da13..1eabb5b7a1d840447f032b0c7e0581b65434ad9c 100644 (file)
@@ -1,21 +1,27 @@
+/* thr_stub.c - stubs for the threads */
 /* $OpenLDAP$ */
-/*
- * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2007 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 )
 
-#include "ldap_pvt_thread.h"
+#include "ldap_pvt_thread.h" /* Get the thread interface */
+#define LDAP_THREAD_IMPLEMENTATION
+#define LDAP_THREAD_POOL_IMPLEMENTATION
+#include "ldap_thr_debug.h"  /* May rename the symbols defined below */
 
 /***********************************************************************
  *                                                                     *
@@ -147,16 +153,22 @@ ldap_pvt_thread_pool_init (
        ldap_pvt_thread_pool_t *pool_out,
        int max_concurrency, int max_pending )
 {
-       *pool_out = NULL;
+       *pool_out = (ldap_pvt_thread_pool_t) 0;
        return(0);
 }
 
 int
 ldap_pvt_thread_pool_submit (
        ldap_pvt_thread_pool_t *pool,
-       void *(*start_routine)( void * ), void *arg )
+       ldap_pvt_thread_start_t *start_routine, void *arg )
+{
+       (start_routine)(NULL, arg);
+       return(0);
+}
+
+int
+ldap_pvt_thread_pool_maxthreads ( ldap_pvt_thread_pool_t *tpool, int max_threads )
 {
-       (start_routine)(arg);
        return(0);
 }
 
@@ -174,4 +186,54 @@ ldap_pvt_thread_pool_destroy (
        return(0);
 }
 
+int ldap_pvt_thread_pool_getkey (
+       void *ctx, void *key, void **data, ldap_pvt_thread_pool_keyfree_t **kfree )
+{
+       return(0);
+}
+
+int ldap_pvt_thread_pool_setkey (
+       void *ctx, void *key, void *data, ldap_pvt_thread_pool_keyfree_t *kfree )
+{
+       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 )
+{
+       return(0);
+}
+
+ldap_pvt_thread_t
+ldap_pvt_thread_pool_tid( void *vctx )
+{
+
+       return(0);
+}
+
 #endif /* NO_THREADS */