Lines Matching refs:_RESTRICT_KYWD
203 extern int pthread_attr_getstack(const pthread_attr_t *_RESTRICT_KYWD,
204 void **_RESTRICT_KYWD, size_t *_RESTRICT_KYWD);
206 extern int pthread_attr_getstacksize(const pthread_attr_t *_RESTRICT_KYWD,
207 size_t *_RESTRICT_KYWD);
209 extern int pthread_attr_getstackaddr(const pthread_attr_t *_RESTRICT_KYWD,
210 void **_RESTRICT_KYWD);
214 extern int pthread_attr_getscope(const pthread_attr_t *_RESTRICT_KYWD,
215 int *_RESTRICT_KYWD);
217 extern int pthread_attr_getinheritsched(const pthread_attr_t *_RESTRICT_KYWD,
218 int *_RESTRICT_KYWD);
220 extern int pthread_attr_getschedpolicy(const pthread_attr_t *_RESTRICT_KYWD,
221 int *_RESTRICT_KYWD);
222 extern int pthread_attr_setschedparam(pthread_attr_t *_RESTRICT_KYWD,
223 const struct sched_param *_RESTRICT_KYWD);
224 extern int pthread_attr_getschedparam(const pthread_attr_t *_RESTRICT_KYWD,
225 struct sched_param *_RESTRICT_KYWD);
226 extern int pthread_attr_setname_np(pthread_attr_t *_RESTRICT_KYWD,
227 const char *_RESTRICT_KYWD);
228 extern int pthread_attr_getname_np(pthread_attr_t *_RESTRICT_KYWD,
229 char *_RESTRICT_KYWD, size_t);
230 extern int pthread_create(pthread_t *_RESTRICT_KYWD,
231 const pthread_attr_t *_RESTRICT_KYWD, void * (*)(void *),
232 void *_RESTRICT_KYWD);
239 extern int pthread_getschedparam(pthread_t, int *_RESTRICT_KYWD,
240 struct sched_param *_RESTRICT_KYWD);
262 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
265 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
268 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
271 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
272 extern int pthread_mutex_init(pthread_mutex_t *_RESTRICT_KYWD,
273 const pthread_mutexattr_t *_RESTRICT_KYWD);
277 extern int pthread_mutex_clocklock(pthread_mutex_t *_RESTRICT_KYWD,
278 clockid_t, const struct timespec *_RESTRICT_KYWD);
279 extern int pthread_mutex_timedlock(pthread_mutex_t *_RESTRICT_KYWD,
280 const struct timespec *_RESTRICT_KYWD);
281 extern int pthread_mutex_relclocklock_np(pthread_mutex_t *_RESTRICT_KYWD,
282 clockid_t, const struct timespec *_RESTRICT_KYWD);
283 extern int pthread_mutex_reltimedlock_np(pthread_mutex_t *_RESTRICT_KYWD,
284 const struct timespec *_RESTRICT_KYWD);
287 extern int pthread_mutex_setprioceiling(pthread_mutex_t *_RESTRICT_KYWD,
288 int, int *_RESTRICT_KYWD);
289 extern int pthread_mutex_getprioceiling(const pthread_mutex_t *_RESTRICT_KYWD,
290 int *_RESTRICT_KYWD);
294 extern int pthread_condattr_getclock(const pthread_condattr_t *_RESTRICT_KYWD,
295 clockid_t *_RESTRICT_KYWD);
297 extern int pthread_condattr_getpshared(const pthread_condattr_t *_RESTRICT_KYWD,
298 int *_RESTRICT_KYWD);
299 extern int pthread_cond_init(pthread_cond_t *_RESTRICT_KYWD,
300 const pthread_condattr_t *_RESTRICT_KYWD);
304 extern int pthread_cond_wait(pthread_cond_t *_RESTRICT_KYWD,
305 pthread_mutex_t *_RESTRICT_KYWD);
306 extern int pthread_cond_clockwait(pthread_cond_t *_RESTRICT_KYWD,
307 pthread_mutex_t *_RESTRICT_KYWD, clockid_t,
308 const struct timespec *_RESTRICT_KYWD);
309 extern int pthread_cond_timedwait(pthread_cond_t *_RESTRICT_KYWD,
310 pthread_mutex_t *_RESTRICT_KYWD, const struct timespec *_RESTRICT_KYWD);
311 extern int pthread_cond_relclockwait_np(pthread_cond_t *_RESTRICT_KYWD,
312 pthread_mutex_t *_RESTRICT_KYWD, clockid_t,
313 const struct timespec *_RESTRICT_KYWD);
314 extern int pthread_cond_reltimedwait_np(pthread_cond_t *_RESTRICT_KYWD,
315 pthread_mutex_t *_RESTRICT_KYWD, const struct timespec *_RESTRICT_KYWD);
316 extern int pthread_attr_getguardsize(const pthread_attr_t *_RESTRICT_KYWD,
317 size_t *_RESTRICT_KYWD);
322 extern int pthread_mutexattr_gettype(const pthread_mutexattr_t *_RESTRICT_KYWD,
323 int *_RESTRICT_KYWD);
324 extern int pthread_rwlock_init(pthread_rwlock_t *_RESTRICT_KYWD,
325 const pthread_rwlockattr_t *_RESTRICT_KYWD);
328 extern int pthread_rwlock_clockrdlock(pthread_rwlock_t *_RESTRICT_KYWD,
329 clockid_t, const struct timespec *_RESTRICT_KYWD);
330 extern int pthread_rwlock_timedrdlock(pthread_rwlock_t *_RESTRICT_KYWD,
331 const struct timespec *_RESTRICT_KYWD);
332 extern int pthread_rwlock_relclockrdlock_np(pthread_rwlock_t *_RESTRICT_KYWD,
333 clockid_t, const struct timespec *_RESTRICT_KYWD);
334 extern int pthread_rwlock_reltimedrdlock_np(pthread_rwlock_t *_RESTRICT_KYWD,
335 const struct timespec *_RESTRICT_KYWD);
338 extern int pthread_rwlock_clockwrlock(pthread_rwlock_t *_RESTRICT_KYWD,
339 clockid_t, const struct timespec *_RESTRICT_KYWD);
340 extern int pthread_rwlock_timedwrlock(pthread_rwlock_t *_RESTRICT_KYWD,
341 const struct timespec *_RESTRICT_KYWD);
342 extern int pthread_rwlock_relclockwrlock_np(pthread_rwlock_t *_RESTRICT_KYWD,
343 clockid_t, const struct timespec *_RESTRICT_KYWD);
344 extern int pthread_rwlock_reltimedwrlock_np(pthread_rwlock_t *_RESTRICT_KYWD,
345 const struct timespec *_RESTRICT_KYWD);
351 const pthread_rwlockattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
362 const pthread_barrierattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
363 extern int pthread_barrier_init(pthread_barrier_t *_RESTRICT_KYWD,
364 const pthread_barrierattr_t *_RESTRICT_KYWD, uint_t);
372 const pthread_mutexattr_t *_RESTRICT_KYWD, int *_RESTRICT_KYWD);