From: hadaq Date: Tue, 8 Jul 2003 19:01:15 +0000 (+0000) Subject: Bugfix. X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=02855919b616b3cc9683ee80e0d874c1133c7f90;p=daqdata.git Bugfix. -- Benjamin Sailer --- diff --git a/compat/pthread.h b/compat/pthread.h index acabc10..1bfa920 100644 --- a/compat/pthread.h +++ b/compat/pthread.h @@ -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);