Blame include/pthread.h

Packit Service 82fcde
#include_next <pthread.h>
Packit Service 82fcde
Packit Service 82fcde
#ifndef _ISOMAC
Packit Service 82fcde
/* Prototypes repeated instead of using __typeof because pthread.h is
Packit Service 82fcde
   included in C++ tests, and declaring functions with __typeof and
Packit Service 82fcde
   __THROW doesn't work for C++.  */
Packit Service 82fcde
extern int __pthread_barrier_init (pthread_barrier_t *__restrict __barrier,
Packit Service 82fcde
				 const pthread_barrierattr_t *__restrict
Packit Service 82fcde
				 __attr, unsigned int __count)
Packit Service 82fcde
     __THROW __nonnull ((1));
Packit Service 82fcde
extern int __pthread_barrier_wait (pthread_barrier_t *__barrier)
Packit Service 82fcde
     __THROWNL __nonnull ((1));
Packit Service 82fcde
Packit Service 82fcde
/* This function is called to initialize the pthread library.  */
Packit Service 82fcde
extern void __pthread_initialize (void) __attribute__ ((weak));
Packit Service 82fcde
#endif