Lines Matching refs:_RESTRICT_KYWD
193 extern int pthread_attr_getstack(const pthread_attr_t *_RESTRICT_KYWD,
194 void **_RESTRICT_KYWD, size_t *_RESTRICT_KYWD);
196 extern int pthread_attr_getstacksize(const pthread_attr_t *_RESTRICT_KYWD,
197 size_t *_RESTRICT_KYWD);
199 extern int pthread_attr_getstackaddr(const pthread_attr_t *_RESTRICT_KYWD,
200 void **_RESTRICT_KYWD);
204 extern int pthread_attr_getscope(const pthread_attr_t *_RESTRICT_KYWD,
205 int *_RESTRICT_KYWD);
207 extern int pthread_attr_getinheritsched(const pthread_attr_t *_RESTRICT_KYWD,
208 int *_RESTRICT_KYWD);
210 extern int pthread_attr_getschedpolicy(const pthread_attr_t *_RESTRICT_KYWD,
211 int *_RESTRICT_KYWD);
212 extern int pthread_attr_setschedparam(pthread_attr_t *_RESTRICT_KYWD,
213 const struct sched_param *_RESTRICT_KYWD);
214 extern int pthread_attr_getschedparam(const pthread_attr_t *_RESTRICT_KYWD,
215 struct sched_param *_RESTRICT_KYWD);
216 extern int pthread_create(pthread_t *_RESTRICT_KYWD,
217 const pthread_attr_t *_RESTRICT_KYWD, void * (*)(void *),
218 void *_RESTRICT_KYWD);
225 extern int pthread_getschedparam(pthread_t, int *_RESTRICT_KYWD,
226 struct sched_param *_RESTRICT_KYWD);
246 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
249 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
252 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
255 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
256 extern int pthread_mutex_init(pthread_mutex_t *_RESTRICT_KYWD,
257 const pthread_mutexattr_t *_RESTRICT_KYWD);
261 extern int pthread_mutex_timedlock(pthread_mutex_t *_RESTRICT_KYWD,
262 const struct timespec *_RESTRICT_KYWD);
263 extern int pthread_mutex_reltimedlock_np(pthread_mutex_t *_RESTRICT_KYWD,
264 const struct timespec *_RESTRICT_KYWD);
267 extern int pthread_mutex_setprioceiling(pthread_mutex_t *_RESTRICT_KYWD,
268 int, int *_RESTRICT_KYWD);
269 extern int pthread_mutex_getprioceiling(const pthread_mutex_t *_RESTRICT_KYWD,
270 int *_RESTRICT_KYWD);
274 extern int pthread_condattr_getclock(const pthread_condattr_t *_RESTRICT_KYWD,
275 clockid_t *_RESTRICT_KYWD);
277 extern int pthread_condattr_getpshared(const pthread_condattr_t *_RESTRICT_KYWD,
278 int *_RESTRICT_KYWD);
279 extern int pthread_cond_init(pthread_cond_t *_RESTRICT_KYWD,
280 const pthread_condattr_t *_RESTRICT_KYWD);
284 extern int pthread_cond_wait(pthread_cond_t *_RESTRICT_KYWD,
285 pthread_mutex_t *_RESTRICT_KYWD);
286 extern int pthread_cond_timedwait(pthread_cond_t *_RESTRICT_KYWD,
287 pthread_mutex_t *_RESTRICT_KYWD, const struct timespec *_RESTRICT_KYWD);
288 extern int pthread_cond_reltimedwait_np(pthread_cond_t *_RESTRICT_KYWD,
289 pthread_mutex_t *_RESTRICT_KYWD, const struct timespec *_RESTRICT_KYWD);
290 extern int pthread_attr_getguardsize(const pthread_attr_t *_RESTRICT_KYWD,
291 size_t *_RESTRICT_KYWD);
296 extern int pthread_mutexattr_gettype(const pthread_mutexattr_t *_RESTRICT_KYWD,
297 int *_RESTRICT_KYWD);
298 extern int pthread_rwlock_init(pthread_rwlock_t *_RESTRICT_KYWD,
299 const pthread_rwlockattr_t *_RESTRICT_KYWD);
302 extern int pthread_rwlock_timedrdlock(pthread_rwlock_t *_RESTRICT_KYWD,
303 const struct timespec *_RESTRICT_KYWD);
304 extern int pthread_rwlock_reltimedrdlock_np(pthread_rwlock_t *_RESTRICT_KYWD,
305 const struct timespec *_RESTRICT_KYWD);
308 extern int pthread_rwlock_timedwrlock(pthread_rwlock_t *_RESTRICT_KYWD,
309 const struct timespec *_RESTRICT_KYWD);
310 extern int pthread_rwlock_reltimedwrlock_np(pthread_rwlock_t *_RESTRICT_KYWD,
311 const struct timespec *_RESTRICT_KYWD);
317 const pthread_rwlockattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
328 const pthread_barrierattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
329 extern int pthread_barrier_init(pthread_barrier_t *_RESTRICT_KYWD,
330 const pthread_barrierattr_t *_RESTRICT_KYWD, uint_t);
338 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);