View | Details | Raw Unified | Return to bug 235583
Collapse All | Expand All

(-)include/pthread.h (+9 lines)
Lines 209-217 Link Here
209
int		pthread_cond_wait(pthread_cond_t * __restrict,
209
int		pthread_cond_wait(pthread_cond_t * __restrict,
210
		    pthread_mutex_t * __restrict __mutex)
210
		    pthread_mutex_t * __restrict __mutex)
211
		    __requires_exclusive(*__mutex);
211
		    __requires_exclusive(*__mutex);
212
#ifdef __powerpc64__
213
#pragma clang diagnostic push
214
#pragma clang diagnostic ignored "-Wbuiltin-requires-header"
215
#endif
212
int		pthread_create(pthread_t * __restrict,
216
int		pthread_create(pthread_t * __restrict,
213
		    const pthread_attr_t * __restrict, void *(*) (void *),
217
		    const pthread_attr_t * __restrict, void *(*) (void *),
214
		    void * __restrict);
218
		    void * __restrict);
219
#ifdef __powerpc64__
220
#pragma clang diagnostic pop
221
#endif
222
223
215
int		pthread_detach(pthread_t);
224
int		pthread_detach(pthread_t);
216
int		pthread_equal(pthread_t, pthread_t);
225
int		pthread_equal(pthread_t, pthread_t);
217
void		pthread_exit(void *) __dead2;
226
void		pthread_exit(void *) __dead2;

Return to bug 235583