diff options
author | Christopher Faylor <me@cgf.cx> | 2000-05-08 22:38:07 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-05-08 22:38:07 +0000 |
commit | 67ce5cba91de025481ef2f35da8696c5d5a66096 (patch) | |
tree | ad59fa7255b88fb81afb4a943a154b44dee7815a /winsup/cygwin/include/pthread.h | |
parent | c469b6a2b0c53361ca88fe3d0a840523bd149e44 (diff) | |
download | cygnal-67ce5cba91de025481ef2f35da8696c5d5a66096.tar.gz cygnal-67ce5cba91de025481ef2f35da8696c5d5a66096.tar.bz2 cygnal-67ce5cba91de025481ef2f35da8696c5d5a66096.zip |
* include/pthread.h (pthread_detach): Add missing prototype.
(pthread_join): same.
Diffstat (limited to 'winsup/cygwin/include/pthread.h')
-rw-r--r-- | winsup/cygwin/include/pthread.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/include/pthread.h b/winsup/cygwin/include/pthread.h index 4826e0897..90bf5c28c 100644 --- a/winsup/cygwin/include/pthread.h +++ b/winsup/cygwin/include/pthread.h @@ -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); |