diff options
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | create.c | 2 | 
2 files changed, 3 insertions, 1 deletions
| @@ -1,5 +1,7 @@  Fri Jul 24 23:09:33 1998  Ross Johnson  <rpj@ixobrychus.canberra.edu.au> +	* create.c (pthread_create): Change . to -> in sigmask memcpy() args. +  	* pthread.h: (pthread_cancel): Add function prototype.  	(pthread_testcancel): Ditto. @@ -92,7 +92,7 @@ pthread_create(pthread_t *thread,  	  attr_copy->priority = attr->priority;  #if HAVE_SIGSET_T -	  memcpy(attr_copy.sigmask, attr.sigmask, sizeof(sigset_t));  +	  memcpy(attr_copy->sigmask, attr->sigmask, sizeof(sigset_t));   #endif /* HAVE_SIGSET_T */  	} | 
