diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 1999-07-27 03:29:01 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 1999-07-27 03:29:01 +0000 |
| commit | 5b90d09f8a789a582ad31294d7df6e6d932e5db2 (patch) | |
| tree | 7b72614639cc8f12facf423e786f1c49fc6cac89 /include/pthread.h | |
| parent | e3b18788049abb82791583364e214e75355b1de0 (diff) | |
Notes
Diffstat (limited to 'include/pthread.h')
| -rw-r--r-- | include/pthread.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/pthread.h b/include/pthread.h index d5881827d900..19ee24be4226 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -30,6 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #ifndef _PTHREAD_H_ #define _PTHREAD_H_ @@ -262,12 +263,15 @@ int pthread_rwlockattr_setpshared __P((pthread_rwlockattr_t *, int *)); int pthread_rwlockattr_destroy __P((pthread_rwlockattr_t *)); pthread_t pthread_self __P((void)); -int pthread_setcancelstate __P((int, int *)); -int pthread_setcanceltype __P((int, int *)); int pthread_setspecific __P((pthread_key_t, const void *)); int pthread_sigmask __P((int, const sigset_t *, sigset_t *)); -int pthread_testcancel __P((void)); +#ifdef NOT_YET +int pthread_cancel __P((pthread_t)); +int pthread_setcancelstate __P((int, int *)); +int pthread_setcanceltype __P((int, int *)); +void pthread_testcancel __P((void)); +#endif int pthread_getprio __P((pthread_t)); int pthread_setprio __P((pthread_t, int)); |
