]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap_r/thr_thr.c
Fixed typo in
[openldap] / libraries / libldap_r / thr_thr.c
index 5b2e6d47043efdb6089c99580c50b5a6aeecc4d8..54f2b6ba94d89b2f34ca981bc4ec76ca853a2067 100644 (file)
@@ -1,4 +1,14 @@
-/* thrsolaris.c - wrappers around solaris threads */
+/*
+ * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
+ * 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.
+ */
+
+/* thr_thr.c - wrappers around solaris threads */
 
 #include "portable.h"
 #include "ldap_pvt_thread.h"
  *                 *
  *******************/
 
+int
+ldap_pvt_thread_initialize( void )
+{
+#ifdef LDAP_THREAD_CONCURRENCY
+       thr_setconcurrency( LDAP_THREAD_CONCURRENCY );
+#endif
+       return 0;
+}
+
+int
+ldap_pvt_thread_set_concurrency(int n)
+{
+       return thr_setconcurrency( n );
+}
+
+int
+ldap_pvt_thread_get_concurrency(void)
+{
+       return thr_getconcurrency();
+}
+
 int 
 ldap_pvt_thread_create( ldap_pvt_thread_t * thread, 
-                      ldap_pvt_thread_attr_t *attr,
-                      void *(*start_routine)( void *), void *arg)
+       int detach,
+       void *(*start_routine)( void *),
+       void *arg)
 {
-       return( thr_create( NULL, 0, start_routine, arg, *attr, thread ) );
+       return( thr_create( NULL, 0, start_routine, arg,
+               detach ? THR_DETACHED : 0,
+               thread ) );
 }
 
 void 
@@ -46,31 +80,9 @@ ldap_pvt_thread_yield( void )
 }
 
 int 
-ldap_pvt_thread_attr_init( ldap_pvt_thread_attr_t *attr )
-{
-       *attr = 0;
-       return( 0 );
-}
-
-int 
-ldap_pvt_thread_attr_destroy( ldap_pvt_thread_attr_t *attr )
-{
-       *attr = 0;
-       return( 0 );
-}
-
-int 
-ldap_pvt_thread_attr_setdetachstate( ldap_pvt_thread_attr_t *attr, int dstate )
-{
-       *attr = detachstate;
-       return( 0 );
-}
-
-int 
-ldap_pvt_thread_cond_init( ldap_pvt_thread_cond_t *cond, 
-                         ldap_pvt_thread_condattr_t *attr )
+ldap_pvt_thread_cond_init( ldap_pvt_thread_cond_t *cond )
 {
-       return( cond_init( cond, attr ? *attr : USYNC_THREAD, NULL ) );
+       return( cond_init( cond, USYNC_THREAD, NULL ) );
 }
 
 int 
@@ -99,10 +111,9 @@ ldap_pvt_thread_cond_destroy( ldap_pvt_thread_cond_t *cv )
 }
 
 int 
-ldap_pvt_thread_mutex_init( ldap_pvt_thread_mutex_t *mutex,
-                          ldap_pvt_thread_mutexattr_t *attr )
+ldap_pvt_thread_mutex_init( ldap_pvt_thread_mutex_t *mutex )
 {
-       return( mutex_init( mutex, attr ? *attr : USYNC_THREAD, NULL ) );
+       return( mutex_init( mutex, USYNC_THREAD, NULL ) );
 }
 
 int