From 67ce5cba91de025481ef2f35da8696c5d5a66096 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 8 May 2000 22:38:07 +0000 Subject: * include/pthread.h (pthread_detach): Add missing prototype. (pthread_join): same. --- winsup/cygwin/include/pthread.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'winsup/cygwin/include/pthread.h') 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); -- cgit v1.2.3