pthread.h (2017a7cdfe8f1a0e38b76e8e8871fe90df07b8f7) | pthread.h (9939a13667567dd4b0c3496953d99b87a6995208) |
---|---|
1/* 2 * Copyright (c) 1993, 1994 by Chris Provenzano, proven@mit.edu 3 * Copyright (c) 1995-1998 by John Birrell <jb@cimlogic.com.au> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 171 unchanged lines hidden (view full) --- 180 pthread_mutex_t *, const struct timespec *); 181int pthread_cond_wait(pthread_cond_t *, pthread_mutex_t *); 182int pthread_create(pthread_t *, const pthread_attr_t *, 183 void *(*) (void *), void *); 184int pthread_detach(pthread_t); 185int pthread_equal(pthread_t, pthread_t); 186void pthread_exit(void *) __dead2; 187void *pthread_getspecific(pthread_key_t); | 1/* 2 * Copyright (c) 1993, 1994 by Chris Provenzano, proven@mit.edu 3 * Copyright (c) 1995-1998 by John Birrell <jb@cimlogic.com.au> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 171 unchanged lines hidden (view full) --- 180 pthread_mutex_t *, const struct timespec *); 181int pthread_cond_wait(pthread_cond_t *, pthread_mutex_t *); 182int pthread_create(pthread_t *, const pthread_attr_t *, 183 void *(*) (void *), void *); 184int pthread_detach(pthread_t); 185int pthread_equal(pthread_t, pthread_t); 186void pthread_exit(void *) __dead2; 187void *pthread_getspecific(pthread_key_t); |
188int pthread_getcpuclockid(pthread_t, clockid_t *); |
|
188int pthread_join(pthread_t, void **); 189int pthread_key_create(pthread_key_t *, 190 void (*) (void *)); 191int pthread_key_delete(pthread_key_t); 192int pthread_kill(pthread_t, int); 193int pthread_mutexattr_init(pthread_mutexattr_t *); 194int pthread_mutexattr_destroy(pthread_mutexattr_t *); 195int pthread_mutexattr_getpshared(const pthread_mutexattr_t *, --- 77 unchanged lines hidden --- | 189int pthread_join(pthread_t, void **); 190int pthread_key_create(pthread_key_t *, 191 void (*) (void *)); 192int pthread_key_delete(pthread_key_t); 193int pthread_kill(pthread_t, int); 194int pthread_mutexattr_init(pthread_mutexattr_t *); 195int pthread_mutexattr_destroy(pthread_mutexattr_t *); 196int pthread_mutexattr_getpshared(const pthread_mutexattr_t *, --- 77 unchanged lines hidden --- |