]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
Bugfix.
authorhadaq <hadaq>
Tue, 8 Jul 2003 19:01:15 +0000 (19:01 +0000)
committerhadaq <hadaq>
Tue, 8 Jul 2003 19:01:15 +0000 (19:01 +0000)
-- Benjamin Sailer

compat/pthread.h

index acabc10f43a2aa06da31362cf905d31582b9dbdf..1bfa92005240a93d07fe932cf942f05fceeff96c 100644 (file)
@@ -65,10 +65,11 @@ LynxOS 2.5.  The translation is done according to Appendix B in
 #define pthread_getspecific PTHREAD_pthread_getspecific
 
 int PTHREAD_pthread_detach(pthread_t thread);
-int PTHREAD_pthread_attr_destroy(pthread_attr_t *attr);
-int PTHREAD_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *arg);
 int PTHREAD_pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *mutexattr);
 int PTHREAD_pthread_cond_init(pthread_cond_t *mutex, const pthread_condattr_t *condattr);
+int PTHREAD_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *arg);
+int PTHREAD_pthread_attr_init(pthread_attr_t *attr);
+int PTHREAD_pthread_attr_destroy(pthread_attr_t *attr);
 int PTHREAD_pthread_key_create(pthread_key_t *key, void (*destr_function) (void *));
 int PTHREAD_pthread_key_delete(pthread_key_t key);
 void *PTHREAD_pthread_getspecific(pthread_key_t key);