pollution: asctime_r extern char *asctime_r (const struct tm *restrict, char *restrict); pollution: ctime_r extern char *ctime_r (const time_t *, char *); pollution: sched_priority int sched_priority; pollution: sched_policy int sched_policy; pollution: sched_reserved int sched_reserved[6]; pollution: sched_param struct sched_param { int sched_priority; int sched_policy; int sched_reserved[6]; }; pollution: sched_get_priority_max int sched_get_priority_max (int); pollution: sched_get_priority_min int sched_get_priority_min (int); pollution: sched_param pollution: sched_getparam int sched_getparam (pid_t, struct sched_param *); pollution: sched_getscheduler int sched_getscheduler (pid_t); pollution: sched_rr_get_interval int sched_rr_get_interval (pid_t, struct timespec *); pollution: sched_param pollution: sched_setparam int sched_setparam (pid_t, const struct sched_param *); pollution: sched_param pollution: sched_setscheduler int sched_setscheduler (pid_t, int, const struct sched_param *); pollution: sched_yield int sched_yield (void); pollution: pthread_attr_init extern int pthread_attr_init (pthread_attr_t *); pollution: pthread_attr_destroy extern int pthread_attr_destroy (pthread_attr_t *); pollution: pthread_attr_setstack extern int pthread_attr_setstack (pthread_attr_t *, void *, size_t); pollution: pthread_attr_getstack extern int pthread_attr_getstack (const pthread_attr_t *restrict, void **restrict, size_t *restrict); pollution: pthread_attr_setstacksize extern int pthread_attr_setstacksize (pthread_attr_t *, size_t); pollution: pthread_getattr_np extern int pthread_getattr_np (pthread_t, pthread_attr_t *); pollution: pthread_attr_getstacksize extern int pthread_attr_getstacksize (const pthread_attr_t *restrict, size_t *restrict); pollution: pthread_attr_setstackaddr extern int pthread_attr_setstackaddr (pthread_attr_t *, void *); pollution: pthread_attr_getstackaddr extern int pthread_attr_getstackaddr (const pthread_attr_t *restrict, void **restrict); pollution: pthread_attr_setschedpolicy extern int pthread_attr_setschedpolicy (pthread_attr_t *, int); pollution: pthread_attr_getschedpolicy extern int pthread_attr_getschedpolicy (const pthread_attr_t *restrict, int *restrict); pollution: sched_param pollution: pthread_attr_setschedparam extern int pthread_attr_setschedparam (pthread_attr_t *restrict, const struct sched_param *restrict); pollution: sched_param pollution: pthread_attr_getschedparam extern int pthread_attr_getschedparam (const pthread_attr_t *restrict, struct sched_param *restrict); pollution: pthread_attr_setinheritsched extern int pthread_attr_setinheritsched (pthread_attr_t *, int); pollution: pthread_attr_getinheritsched extern int pthread_attr_getinheritsched (const pthread_attr_t *restrict, int *restrict); pollution: pthread_attr_setdetachstate extern int pthread_attr_setdetachstate (pthread_attr_t *, int); pollution: pthread_attr_getdetachstate extern int pthread_attr_getdetachstate (const pthread_attr_t *, int *); pollution: pthread_attr_setguardsize extern int pthread_attr_setguardsize (pthread_attr_t *, size_t); pollution: pthread_attr_getguardsize extern int pthread_attr_getguardsize (const pthread_attr_t *restrict, size_t *restrict); pollution: pthread_attr_setsrad_np extern int pthread_attr_setsrad_np (pthread_attr_t *, short, int); pollution: pthread_attr_getsrad_np extern int pthread_attr_getsrad_np (const pthread_attr_t *restrict, short *restrict, int *restrict); pollution: sched_param pollution: pthread_setschedparam extern int pthread_setschedparam (pthread_t, int, const struct sched_param *); pollution: sched_param pollution: pthread_getschedparam extern int pthread_getschedparam (pthread_t, int *restrict, struct sched_param *restrict); pollution: pthread_setschedprio extern int pthread_setschedprio (pthread_t, int); pollution: pthread_mutex_owner_np extern pthread_t pthread_mutex_owner_np (pthread_mutex_t *); pollution: pthread_self extern pthread_t pthread_self (void); pollution: pthread_create extern int pthread_create (pthread_t *restrict, const pthread_attr_t *restrict, void *(*)(void *), void *restrict); pollution: pthread_detach extern int pthread_detach (pthread_t); pollution: pthread_join extern int pthread_join (pthread_t, void **); pollution: pthread_exit extern _Noreturn void pthread_exit (void *); pollution: pthread_cleanup_push extern void pthread_cleanup_push (void (*)(void *), void *); pollution: pthread_cleanup_pop extern void pthread_cleanup_pop (int); pollution: pthread_cancel extern int pthread_cancel (pthread_t); pollution: pthread_attr_setscope extern int pthread_attr_setscope (pthread_attr_t *, int); pollution: pthread_attr_getscope extern int pthread_attr_getscope (const pthread_attr_t *restrict, int *restrict); pollution: pthread_equal extern int pthread_equal (pthread_t, pthread_t); pollution: pthread_checkpnt_pending extern int pthread_checkpnt_pending (); pollution: pthread_getcpuclockid extern int pthread_getcpuclockid (pthread_t, clockid_t *); pollution: pthread_mutexattr_init extern int pthread_mutexattr_init (pthread_mutexattr_t *); pollution: pthread_mutexattr_destroy extern int pthread_mutexattr_destroy (pthread_mutexattr_t *); pollution: pthread_mutexattr_setprotocol extern int pthread_mutexattr_setprotocol (pthread_mutexattr_t *, int); pollution: pthread_mutexattr_getprotocol extern int pthread_mutexattr_getprotocol (const pthread_mutexattr_t *restrict, int *restrict); pollution: pthread_mutexattr_setprioceiling extern int pthread_mutexattr_setprioceiling (pthread_mutexattr_t *, int); pollution: pthread_mutexattr_getprioceiling extern int pthread_mutexattr_getprioceiling (const pthread_mutexattr_t *restrict, int *restrict); pollution: pthread_mutexattr_getpshared extern int pthread_mutexattr_getpshared (const pthread_mutexattr_t *restrict, int *restrict); pollution: pthread_mutexattr_setpshared extern int pthread_mutexattr_setpshared (pthread_mutexattr_t *, int); pollution: pthread_mutexattr_gettype extern int pthread_mutexattr_gettype (const pthread_mutexattr_t *restrict, int *restrict); pollution: pthread_mutexattr_settype extern int pthread_mutexattr_settype (pthread_mutexattr_t *, int); pollution: pthread_mutexattr_getrobust extern int pthread_mutexattr_getrobust (const pthread_mutexattr_t *restrict, int *restrict); pollution: pthread_mutexattr_setrobust extern int pthread_mutexattr_setrobust (pthread_mutexattr_t *, int); pollution: pthread_mutex_init extern int pthread_mutex_init (pthread_mutex_t *restrict, const pthread_mutexattr_t *restrict); pollution: pthread_mutex_destroy extern int pthread_mutex_destroy (pthread_mutex_t *); pollution: pthread_mutex_lock extern int pthread_mutex_lock (pthread_mutex_t *); pollution: pthread_mutex_timedlock extern int pthread_mutex_timedlock (pthread_mutex_t *restrict, const struct timespec *restrict); pollution: pthread_mutex_trylock extern int pthread_mutex_trylock (pthread_mutex_t *); pollution: pthread_mutex_unlock extern int pthread_mutex_unlock (pthread_mutex_t *); pollution: pthread_mutex_setprioceiling extern int pthread_mutex_setprioceiling (pthread_mutex_t *restrict, int, int *restrict); pollution: pthread_mutex_getprioceiling extern int pthread_mutex_getprioceiling (const pthread_mutex_t *restrict, int *restrict); pollution: pthread_mutex_consistent extern int pthread_mutex_consistent (pthread_mutex_t *); pollution: pthread_condattr_init extern int pthread_condattr_init (pthread_condattr_t *); pollution: pthread_condattr_destroy extern int pthread_condattr_destroy (pthread_condattr_t *); pollution: pthread_condattr_getpshared extern int pthread_condattr_getpshared (const pthread_condattr_t *restrict, int *restrict); pollution: pthread_condattr_setpshared extern int pthread_condattr_setpshared (pthread_condattr_t *, int); pollution: pthread_condattr_getclock extern int pthread_condattr_getclock (const pthread_condattr_t *restrict, clockid_t *restrict); pollution: pthread_condattr_setclock extern int pthread_condattr_setclock (pthread_condattr_t *, clockid_t); pollution: pthread_cond_init extern int pthread_cond_init (pthread_cond_t *restrict, const pthread_condattr_t *restrict); pollution: pthread_cond_destroy extern int pthread_cond_destroy (pthread_cond_t *); pollution: pthread_cond_wait extern int pthread_cond_wait (pthread_cond_t *restrict, pthread_mutex_t *restrict); pollution: pthread_cond_timedwait extern int pthread_cond_timedwait (pthread_cond_t *restrict, pthread_mutex_t *restrict, const struct timespec *restrict); pollution: pthread_cond_signal extern int pthread_cond_signal (pthread_cond_t *); pollution: pthread_cond_broadcast extern int pthread_cond_broadcast (pthread_cond_t *); pollution: pthread_key_create extern int pthread_key_create (pthread_key_t *, void (*)(void *)); pollution: pthread_key_delete extern int pthread_key_delete (pthread_key_t); pollution: pthread_getspecific extern void * pthread_getspecific (pthread_key_t); pollution: pthread_setspecific extern int pthread_setspecific (pthread_key_t, const void *); pollution: pthread_testcancel extern void pthread_testcancel (void); pollution: pthread_setcancelstate extern int pthread_setcancelstate (int, int *); pollution: pthread_setcanceltype extern int pthread_setcanceltype (int, int *); pollution: pthread_once extern int pthread_once (pthread_once_t *, void (*)(void)); pollution: pthread_rwlock_destroy extern int pthread_rwlock_destroy (pthread_rwlock_t *); pollution: pthread_rwlock_init extern int pthread_rwlock_init (pthread_rwlock_t *restrict, const pthread_rwlockattr_t *restrict); pollution: pthread_rwlock_rdlock extern int pthread_rwlock_rdlock (pthread_rwlock_t *); pollution: pthread_rwlock_tryrdlock extern int pthread_rwlock_tryrdlock (pthread_rwlock_t *); pollution: pthread_rwlock_trywrlock extern int pthread_rwlock_trywrlock (pthread_rwlock_t *); pollution: pthread_rwlock_unlock extern int pthread_rwlock_unlock (pthread_rwlock_t *); pollution: pthread_rwlock_wrlock static int pthread_rwlock_wrlock (pthread_rwlock_t *__l) { return (__pthread_rwlock_wrlock_norecurse(__l)); } pollution: pthread_rwlock_rdheld extern int pthread_rwlock_rdheld (pthread_rwlock_t *); pollution: pthread_rwlock_wrheld extern int pthread_rwlock_wrheld (pthread_rwlock_t *); pollution: pthread_rwlockattr_destroy extern int pthread_rwlockattr_destroy (pthread_rwlockattr_t *); pollution: pthread_rwlockattr_getpshared extern int pthread_rwlockattr_getpshared (const pthread_rwlockattr_t *restrict, int *restrict); pollution: pthread_rwlockattr_init extern int pthread_rwlockattr_init (pthread_rwlockattr_t *); pollution: pthread_rwlockattr_setpshared extern int pthread_rwlockattr_setpshared (pthread_rwlockattr_t *, int); pollution: pthread_rwlockattr_gettrackreaders extern int pthread_rwlockattr_gettrackreaders (pthread_rwlockattr_t *, int *restrict); pollution: pthread_rwlockattr_settrackreaders extern int pthread_rwlockattr_settrackreaders (pthread_rwlockattr_t *, int); pollution: pthread_atfork extern int pthread_atfork (void (*)(void), void (*)(void), void (*)(void)); pollution: pthread_rwlock_timedwrlock static int pthread_rwlock_timedwrlock (pthread_rwlock_t *restrict __l, const struct timespec *restrict __ts) { return (__pthread_rwlock_wrlock_norecurset(__l,__ts)); } pollution: pthread_rwlock_timedrdlock extern int pthread_rwlock_timedrdlock (pthread_rwlock_t *restrict, const struct timespec *restrict); pollution: pthread_getconcurrency extern int pthread_getconcurrency (void); pollution: pthread_setconcurrency extern int pthread_setconcurrency (int); pollution: pthread_spin_init extern int pthread_spin_init (pthread_spinlock_t *, int); pollution: pthread_spin_destroy extern int pthread_spin_destroy (pthread_spinlock_t *); pollution: pthread_spin_lock extern int pthread_spin_lock (pthread_spinlock_t *); pollution: pthread_spin_unlock extern int pthread_spin_unlock (pthread_spinlock_t *); pollution: pthread_spin_trylock extern int pthread_spin_trylock (pthread_spinlock_t *); pollution: pthread_barrierattr_init extern int pthread_barrierattr_init (pthread_barrierattr_t *); pollution: pthread_barrierattr_destroy extern int pthread_barrierattr_destroy (pthread_barrierattr_t *); pollution: pthread_barrierattr_getpshared extern int pthread_barrierattr_getpshared (const pthread_barrierattr_t *restrict, int *restrict); pollution: pthread_barrierattr_setpshared extern int pthread_barrierattr_setpshared (pthread_barrierattr_t *, int); pollution: pthread_barrier_init extern int pthread_barrier_init (pthread_barrier_t *restrict, const pthread_barrierattr_t *restrict, unsigned); pollution: pthread_barrier_destroy extern int pthread_barrier_destroy (pthread_barrier_t *); pollution: pthread_barrier_wait extern int pthread_barrier_wait (pthread_barrier_t *); pollution: ts typedef struct timespec ts ; pollution: flag pollution: func extern void call_once(once_flag *flag, void (*func)(void)); pollution: key pollution: dtor extern int tss_create(tss_t *key, tss_dtor_t dtor); pollution: key extern void tss_delete(tss_t key); pollution: key extern void * tss_get(tss_t key); pollution: key pollution: val extern int tss_set(tss_t key, void *val); pollution: thr pollution: func pollution: arg extern int thrd_create(thrd_t *thr, thrd_start_t func,void *arg); pollution: thr extern int thrd_detach(thrd_t thr); pollution: thr0 pollution: thr1 extern int thrd_equal(thrd_t thr0, thrd_t thr1); pollution: res extern void thrd_exit(int res); pollution: thr pollution: res extern int thrd_join(thrd_t thr, int *res); pollution: duration pollution: remaining extern int thrd_sleep(const struct timespec *duration,struct timespec *remaining); pollution: cond extern int cnd_broadcast(cnd_t *cond); pollution: cond extern void cnd_destroy(cnd_t *cond); pollution: cond extern int cnd_init(cnd_t *cond); pollution: cond extern int cnd_signal(cnd_t *cond); pollution: cond pollution: mtx pollution: ts extern int cnd_timedwait(cnd_t *restrict cond,mtx_t *restrict mtx,const struct timespec *restrict ts); pollution: cond pollution: mtx extern int cnd_wait(cnd_t *cond, mtx_t *mtx); pollution: mtx extern void mtx_destroy(mtx_t *mtx); pollution: mtx pollution: type extern int mtx_init(mtx_t *mtx, int type); pollution: mtx extern int mtx_lock(mtx_t *mtx); pollution: mtx extern int mtx_trylock(mtx_t *mtx); pollution: mtx extern int mtx_unlock(mtx_t *mtx); pollution: mtx pollution: ts extern int mtx_timedlock(mtx_t *restrict mtx,const struct timespec *restrict ts); pollution: E2BIG #define E2BIG 7 pollution: EACCES #define EACCES 13 pollution: EADDRINUSE #define EADDRINUSE 67 pollution: EADDRNOTAVAIL #define EADDRNOTAVAIL 68 pollution: EAFNOSUPPORT #define EAFNOSUPPORT 66 pollution: EAGAIN #define EAGAIN 11 pollution: EALREADY #define EALREADY 56 pollution: EBADF #define EBADF 9 pollution: EBADMSG #define EBADMSG 120 pollution: EBUSY #define EBUSY 16 pollution: ECANCELED #define ECANCELED 117 pollution: ECHILD #define ECHILD 10 pollution: ECHRNG #define ECHRNG 37 pollution: ECLONEME #define ECLONEME ERESTART pollution: ECONNABORTED #define ECONNABORTED 72 pollution: ECONNREFUSED #define ECONNREFUSED 79 pollution: ECONNRESET #define ECONNRESET 73 pollution: ECORRUPT #define ECORRUPT 89 pollution: EDEADLK #define EDEADLK 45 pollution: EDESTADDREQ #define EDESTADDREQ EDESTADDRREQ pollution: EDESTADDRREQ #define EDESTADDRREQ 58 pollution: EDIST #define EDIST 53 pollution: EDOM #define EDOM 33 pollution: EDQUOT #define EDQUOT 88 pollution: EEXIST #define EEXIST 17 pollution: EFAULT #define EFAULT 14 pollution: EFBIG #define EFBIG 27 pollution: EFORMAT #define EFORMAT 48 pollution: EHOSTDOWN #define EHOSTDOWN 80 pollution: EHOSTUNREACH #define EHOSTUNREACH 81 pollution: EIDRM #define EIDRM 36 pollution: EILSEQ #define EILSEQ 116 pollution: EINPROGRESS #define EINPROGRESS 55 pollution: EINTR #define EINTR 4 pollution: EINVAL #define EINVAL 22 pollution: EIO #define EIO 5 pollution: EISCONN #define EISCONN 75 pollution: EISDIR #define EISDIR 21 pollution: EL2HLT #define EL2HLT 44 pollution: EL2NSYNC #define EL2NSYNC 38 pollution: EL3HLT #define EL3HLT 39 pollution: EL3RST #define EL3RST 40 pollution: ELNRNG #define ELNRNG 41 pollution: ELOOP #define ELOOP 85 pollution: EMEDIA #define EMEDIA 110 pollution: EMFILE #define EMFILE 24 pollution: EMLINK #define EMLINK 31 pollution: EMSGSIZE #define EMSGSIZE 59 pollution: EMULTIHOP #define EMULTIHOP 125 pollution: ENAMETOOLONG #define ENAMETOOLONG 86 pollution: ENETDOWN #define ENETDOWN 69 pollution: ENETRESET #define ENETRESET 71 pollution: ENETUNREACH #define ENETUNREACH 70 pollution: ENFILE #define ENFILE 23 pollution: ENOATTR #define ENOATTR 112 pollution: ENOBUFS #define ENOBUFS 74 pollution: ENOCONNECT #define ENOCONNECT 50 pollution: ENOCSI #define ENOCSI 43 pollution: ENODATA #define ENODATA 122 pollution: ENODEV #define ENODEV 19 pollution: ENOENT #define ENOENT 2 pollution: ENOEXEC #define ENOEXEC 8 pollution: ENOLCK #define ENOLCK 49 pollution: ENOLINK #define ENOLINK 126 pollution: ENOMEM #define ENOMEM 12 pollution: ENOMSG #define ENOMSG 35 pollution: ENOPROTOOPT #define ENOPROTOOPT 61 pollution: ENOSPC #define ENOSPC 28 pollution: ENOSR #define ENOSR 118 pollution: ENOSTR #define ENOSTR 123 pollution: ENOSYS #define ENOSYS 109 pollution: ENOTBLK #define ENOTBLK 15 pollution: ENOTCONN #define ENOTCONN 76 pollution: ENOTDIR #define ENOTDIR 20 pollution: ENOTEMPTY #define ENOTEMPTY 87 pollution: ENOTREADY #define ENOTREADY 46 pollution: ENOTRECOVERABLE #define ENOTRECOVERABLE 94 pollution: ENOTRUST #define ENOTRUST 114 pollution: ENOTSOCK #define ENOTSOCK 57 pollution: ENOTSUP #define ENOTSUP 124 pollution: ENOTTY #define ENOTTY 25 pollution: ENXIO #define ENXIO 6 pollution: EOPNOTSUPP #define EOPNOTSUPP 64 pollution: EOVERFLOW #define EOVERFLOW 127 pollution: EOWNERDEAD #define EOWNERDEAD 95 pollution: EPERM #define EPERM 1 pollution: EPFNOSUPPORT #define EPFNOSUPPORT 65 pollution: EPIPE #define EPIPE 32 pollution: EPROCLIM #define EPROCLIM 83 pollution: EPROTO #define EPROTO 121 pollution: EPROTONOSUPPORT #define EPROTONOSUPPORT 62 pollution: EPROTOTYPE #define EPROTOTYPE 60 pollution: ERANGE #define ERANGE 34 pollution: EREMOTE #define EREMOTE 93 pollution: ERESTART #define ERESTART 82 pollution: EROFS #define EROFS 30 pollution: ESAD #define ESAD 113 pollution: ESHUTDOWN #define ESHUTDOWN 77 pollution: ESOCKTNOSUPPORT #define ESOCKTNOSUPPORT 63 pollution: ESOFT #define ESOFT 111 pollution: ESPIPE #define ESPIPE 29 pollution: ESRCH #define ESRCH 3 pollution: ESTALE #define ESTALE 52 pollution: ESYSERROR #define ESYSERROR 90 pollution: ETIME #define ETIME 119 pollution: ETIMEDOUT #define ETIMEDOUT 78 pollution: ETOOMANYREFS #define ETOOMANYREFS 115 pollution: ETXTBSY #define ETXTBSY 26 pollution: EUNATCH #define EUNATCH 42 pollution: EUSERS #define EUSERS 84 pollution: EWOULDBLOCK #define EWOULDBLOCK 54 pollution: EWRPROTECT #define EWRPROTECT 47 pollution: EXDEV #define EXDEV 18 pollution: PTHREAD_BARRIER_SERIAL_THREAD #define PTHREAD_BARRIER_SERIAL_THREAD 2 pollution: PTHREAD_CANCELED #define PTHREAD_CANCELED ((void *)-1) pollution: PTHREAD_CANCEL_ASYNCHRONOUS #define PTHREAD_CANCEL_ASYNCHRONOUS 1 pollution: PTHREAD_CANCEL_DEFERRED #define PTHREAD_CANCEL_DEFERRED 0 pollution: PTHREAD_CANCEL_DISABLE #define PTHREAD_CANCEL_DISABLE 0 pollution: PTHREAD_CANCEL_ENABLE #define PTHREAD_CANCEL_ENABLE 1 pollution: PTHREAD_COND_INITIALIZER #define PTHREAD_COND_INITIALIZER {{ 0, 0, 0, _PTH_FLAGS_INIT, 0 }} pollution: PTHREAD_CREATE_DETACHED #define PTHREAD_CREATE_DETACHED 1 pollution: PTHREAD_CREATE_JOINABLE #define PTHREAD_CREATE_JOINABLE 0 pollution: PTHREAD_EXPLICIT_SCHED #define PTHREAD_EXPLICIT_SCHED 1 pollution: PTHREAD_INHERIT_SCHED #define PTHREAD_INHERIT_SCHED 0 pollution: PTHREAD_MUTEX_DEFAULT #define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_NORMAL pollution: PTHREAD_MUTEX_ERRORCHECK #define PTHREAD_MUTEX_ERRORCHECK 3 pollution: PTHREAD_MUTEX_INITIALIZER #define PTHREAD_MUTEX_INITIALIZER {{ 0, 0, 0, _PTH_FLAGS_INIT, 0 }} pollution: PTHREAD_MUTEX_NORMAL #define PTHREAD_MUTEX_NORMAL 5 pollution: PTHREAD_MUTEX_RECURSIVE #define PTHREAD_MUTEX_RECURSIVE 4 pollution: PTHREAD_MUTEX_ROBUST #define PTHREAD_MUTEX_ROBUST 1 pollution: PTHREAD_MUTEX_STALLED #define PTHREAD_MUTEX_STALLED 0 pollution: PTHREAD_ONCE_INIT #define PTHREAD_ONCE_INIT {{ 0, 0, 0, 0, 0, 0, 0, _PTH_FLAGS_INIT, 0 }} pollution: PTHREAD_PRIO_DEFAULT #define PTHREAD_PRIO_DEFAULT 0 pollution: PTHREAD_PRIO_INHERIT #define PTHREAD_PRIO_INHERIT 3 pollution: PTHREAD_PRIO_NONE #define PTHREAD_PRIO_NONE 1 pollution: PTHREAD_PRIO_PROTECT #define PTHREAD_PRIO_PROTECT 2 pollution: PTHREAD_PROCESS_PRIVATE #define PTHREAD_PROCESS_PRIVATE 1 pollution: PTHREAD_PROCESS_SHARED #define PTHREAD_PROCESS_SHARED 0 pollution: PTHREAD_RWLOCK_FAVORREADERS #define PTHREAD_RWLOCK_FAVORREADERS 0 pollution: PTHREAD_RWLOCK_FAVORWRITERS #define PTHREAD_RWLOCK_FAVORWRITERS 1 pollution: PTHREAD_RWLOCK_INITIALIZER #define PTHREAD_RWLOCK_INITIALIZER {{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, _PTH_FLAGS_INIT, 0, 0 }} pollution: PTHREAD_SCOPE_PROCESS #define PTHREAD_SCOPE_PROCESS 1 pollution: PTHREAD_SCOPE_SYSTEM #define PTHREAD_SCOPE_SYSTEM 0 pollution: PTHREAD_TRACKREADERS_DISABLE #define PTHREAD_TRACKREADERS_DISABLE 0 pollution: PTHREAD_TRACKREADERS_ENABLE #define PTHREAD_TRACKREADERS_ENABLE 1 pollution: SCHED_FIFO #define SCHED_FIFO 1 pollution: SCHED_FIFO2 #define SCHED_FIFO2 5 pollution: SCHED_FIFO3 #define SCHED_FIFO3 6 pollution: SCHED_FIFO4 #define SCHED_FIFO4 7 pollution: SCHED_GLOBAL #define SCHED_GLOBAL 4 pollution: SCHED_LOCAL #define SCHED_LOCAL 3 pollution: SCHED_OTHER #define SCHED_OTHER 0 pollution: SCHED_RR #define SCHED_RR 2 pollution: errno #define errno (*_Errno()) pollution: noreturn #define noreturn _Noreturn pollution: pthread_equal #define pthread_equal(t1,t2) ((t1) == (t2))