diff options
| author | rpj <rpj> | 1998-07-24 13:10:43 +0000 | 
|---|---|---|
| committer | rpj <rpj> | 1998-07-24 13:10:43 +0000 | 
| commit | 0fe7499bdd8c621df2aee754005f1e457935362f (patch) | |
| tree | 841a55257fd2575b24f5dcf544156114dde554c1 | |
| parent | 8681906bbed569f67d74d01ee0b3686d1da1b3f3 (diff) | |
Fri Jul 24 23:09:33 1998  Ross Johnson  <rpj@ixobrychus.canberra.edu.au>
	* pthread.h: (pthread_cancel): Add function prototype.
	(pthread_testcancel): Ditto.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | pthread.h | 6 | 
2 files changed, 11 insertions, 0 deletions
| @@ -1,3 +1,8 @@ +Fri Jul 24 23:09:33 1998  Ross Johnson  <rpj@ixobrychus.canberra.edu.au> + +	* pthread.h: (pthread_cancel): Add function prototype. +	(pthread_testcancel): Ditto. +  1998-07-24  Ben Elliston  <bje@cygnus.com>  	* pthread.h (pthread_condattr_t): Rename dummy structure member. @@ -278,6 +278,12 @@ int pthread_sigmask(int how,  		    const sigset_t *set,  		    sigset_t *oset); +/* Thread cancelation functions. */ + +void pthread_testcancel(void); + +int pthread_cancel(pthread_t thread); +  #ifdef __cplusplus  }  #endif /* __cplusplus */ | 
