X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap_r%2Fthr_stub.c;h=03c3b1be60fbf5149ebcdf79b5f89c0f1c9ed27a;hb=6be50f1b0f1e35aed2a293bbfd2368e8fc6a1d48;hp=c775525b648e21b53921033660ef394e6ae335cb;hpb=6939c531700652491f4be4688c6a1f35a1ab8a18;p=openldap diff --git a/libraries/libldap_r/thr_stub.c b/libraries/libldap_r/thr_stub.c index c775525b64..03c3b1be60 100644 --- a/libraries/libldap_r/thr_stub.c +++ b/libraries/libldap_r/thr_stub.c @@ -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 . + * + * 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 + * . */ -/* thr_stub.c - stubs for the threads */ - #include "portable.h" #if defined( NO_THREADS ) @@ -191,4 +194,36 @@ 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 ) +{ + return(0); +} + #endif /* NO_THREADS */