Home
last modified time | relevance | path

Searched refs:pthread_getschedparam (Results 1 – 19 of 19) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/
Dgthr-posix.h82 #pragma weak pthread_getschedparam macro
190 if (pthread_getschedparam (thread_id, &policy, &params) == 0) in __gthread_objc_thread_set_priority()
227 if (pthread_getschedparam (pthread_self (), &policy, &params) == 0) in __gthread_objc_thread_get_priority()
DChangeLog10229 (pthread_getschedparam, pthread_setschedparam): Only use
/openbsd/src/gnu/gcc/gcc/
Dgthr-posix95.h105 __gthrw(pthread_getschedparam)
272 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0) in __gthread_objc_thread_set_priority()
311 if (__gthrw_(pthread_getschedparam) (__gthrw_(pthread_self) (), &policy, &params) == 0) in __gthread_objc_thread_get_priority()
Dgthr-posix.h142 __gthrw(pthread_getschedparam)
309 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0) in __gthread_objc_thread_set_priority()
348 if (__gthrw_(pthread_getschedparam) (__gthrw_(pthread_self) (), &policy, &params) == 0) in __gthread_objc_thread_get_priority()
Dgthr-posix.c219 pthread_getschedparam (pthread_t thread ATTRIBUTE_UNUSED, in pthread_getschedparam() function
/openbsd/src/lib/librthread/
DSymbols.map40 pthread_getschedparam;
Drthread_sched.c32 pthread_getschedparam(pthread_t thread, int *policy, in pthread_getschedparam() function
Dpthread.h62 PROTO_STD_DEPRECATED(pthread_getschedparam);
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/tests/
Dasan_test.cpp1326 TEST(AddressSanitizer, pthread_getschedparam) { in TEST() argument
1330 pthread_getschedparam(pthread_self(), &policy, Ident(&param) + 2), in TEST()
1333 pthread_getschedparam(pthread_self(), Ident(&policy) - 1, &param), in TEST()
1335 int res = pthread_getschedparam(pthread_self(), &policy, &param); in TEST()
/openbsd/src/include/
Dpthread.h290 int pthread_getschedparam(pthread_t pthread, int *,
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/
DRNBContext.cpp154 if (pthread_getschedparam(pthread_self(), &thread_sched_policy, in ThreadFunctionProcessStatus()
DDNB.cpp133 if (pthread_getschedparam(pthread_self(), &thread_sched_policy, in kqueue_thread()
260 if (pthread_getschedparam(pthread_self(), &thread_sched_policy, in waitpid_thread()
Ddebugserver.cpp915 if (pthread_getschedparam(pthread_self(), &thread_sched_policy, in main()
DRNBRemote.cpp1166 if (pthread_getschedparam(pthread_self(), &thread_sched_policy, in ThreadFunctionReadRemoteData()
/openbsd/src/gnu/llvm/compiler-rt/lib/dfsan/
Ddone_abilist.txt342 fun:pthread_getschedparam=discard
Dlibc_ubuntu1404_abilist.txt2586 fun:pthread_getschedparam=uninstrumented
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
DMachTask.mm714 if (pthread_getschedparam(pthread_self(), &thread_sched_policy,
/openbsd/src/gnu/llvm/compiler-rt/lib/msan/tests/
Dmsan_test.cpp3413 TEST(MemorySanitizer, pthread_getschedparam) { in TEST() argument
3416 int res = pthread_getschedparam(pthread_self(), &policy, &param); in TEST()
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc2767 INTERCEPTOR(int, pthread_getschedparam, uptr thread, int *policy, int *param) {
2769 COMMON_INTERCEPTOR_ENTER(ctx, pthread_getschedparam, thread, policy, param);
2773 int res = REAL(pthread_getschedparam)(thread, policy, param);
2781 COMMON_INTERCEPT_FUNCTION(pthread_getschedparam);