HomeSort by: relevance | last modified time | path
    Searched refs:pthread_getschedparam (Results 1 - 7 of 7) sorted by relevancy

  /src/lib/libpthread/
pthread_misc.c 64 pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param)
pthread.h 224 int pthread_getschedparam(pthread_t, int * __restrict,
pthread_attr.c 123 return pthread_getschedparam(thread, &p->ptap_policy, &p->ptap_sp);
Makefile 253 MLINKS+= pthread_schedparam.3 pthread_getschedparam.3
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_test.cc 1322 TEST(AddressSanitizer, pthread_getschedparam) {
1326 pthread_getschedparam(pthread_self(), &policy, Ident(&param) + 2),
1329 pthread_getschedparam(pthread_self(), Ident(&policy) - 1, &param),
1331 int res = pthread_getschedparam(pthread_self(), &policy, &param);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 3372 TEST(MemorySanitizer, pthread_getschedparam) {
3375 int res = pthread_getschedparam(pthread_self(), &policy, &param);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_interceptors.inc 2526 INTERCEPTOR(int, pthread_getschedparam, uptr thread, int *policy, int *param) {
2528 COMMON_INTERCEPTOR_ENTER(ctx, pthread_getschedparam, thread, policy, param);
2532 int res = REAL(pthread_getschedparam)(thread, policy, param);
2540 COMMON_INTERCEPT_FUNCTION(pthread_getschedparam);

Completed in 26 milliseconds