Home
last modified time | relevance | path

Searched refs:thread_param (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DRNBContext.cpp152 struct sched_param thread_param; in ThreadFunctionProcessStatus() local
155 &thread_param) == 0) { in ThreadFunctionProcessStatus()
156 thread_param.sched_priority = 47; in ThreadFunctionProcessStatus()
157 pthread_setschedparam(pthread_self(), thread_sched_policy, &thread_param); in ThreadFunctionProcessStatus()
H A DDNB.cpp131 struct sched_param thread_param; in kqueue_thread() local
134 &thread_param) == 0) { in kqueue_thread()
135 thread_param.sched_priority = 47; in kqueue_thread()
136 pthread_setschedparam(pthread_self(), thread_sched_policy, &thread_param); in kqueue_thread()
258 struct sched_param thread_param; in waitpid_thread() local
261 &thread_param) == 0) { in waitpid_thread()
262 thread_param.sched_priority = 47; in waitpid_thread()
263 pthread_setschedparam(pthread_self(), thread_sched_policy, &thread_param); in waitpid_thread()
H A Ddebugserver.cpp913 struct sched_param thread_param; in main() local
916 &thread_param) == 0) { in main()
917 thread_param.sched_priority = 47; in main()
918 pthread_setschedparam(pthread_self(), thread_sched_policy, &thread_param); in main()
H A DRNBRemote.cpp1164 struct sched_param thread_param; in ThreadFunctionReadRemoteData() local
1167 &thread_param) == 0) { in ThreadFunctionReadRemoteData()
1168 thread_param.sched_priority = 47; in ThreadFunctionReadRemoteData()
1169 pthread_setschedparam(pthread_self(), thread_sched_policy, &thread_param); in ThreadFunctionReadRemoteData()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.mm712 struct sched_param thread_param;
715 &thread_param) == 0) {
716 thread_param.sched_priority = 47;
717 pthread_setschedparam(pthread_self(), thread_sched_policy, &thread_param);