* include/pthread.h (pthread_detach): Add missing prototype.

(pthread_join): same.
This commit is contained in:
Christopher Faylor 2000-05-08 22:38:07 +00:00
parent c469b6a2b0
commit 67ce5cba91
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2000-05-08 Paul K. Fisher <pfisher@plexware.com>
* include/pthread.h (pthread_detach): Add missing prototype.
(pthread_join): same.
2000-05-08 DJ Delorie <dj@cygnus.com>
* fhandler.cc (lock): use signed math to allow checking ranges

View File

@ -49,10 +49,10 @@ int pthread_attr_init (pthread_attr_t * attr);
int pthread_attr_destroy (pthread_attr_t * attr);
int pthread_attr_setstacksize (pthread_attr_t * attr, size_t size);
int pthread_attr_getstacksize (pthread_attr_t * attr, size_t * size);
/*
pthread_attr_setstackaddr(...);
pthread_attr_getstackaddr(...);
*/
/* Thread Control */
int pthread_detach (pthread_t thread);
int pthread_join (pthread_t thread, void **value_ptr);
/* Thread Exit */
int pthread_exit (void *value_ptr);