Symbol: set_thread_priority
headers/os/kernel/OS.h
353
extern status_t set_thread_priority(thread_id thread, int32 newPriority);
src/add-ons/print/drivers/postscript/FilterIO.cpp
60
set_thread_priority(fThreadId, B_LOW_PRIORITY);
src/add-ons/tracker/zipomatic/GenericThread.cpp
309
return set_thread_priority(fThreadId, newPriority);
src/apps/expander/ExpanderThread.cpp
88
set_thread_priority(fThreadId, B_LOW_PRIORITY);
src/apps/expander/GenericThread.cpp
301
return (set_thread_priority(fThreadId, priority));
src/apps/packageinstaller/PackageItem.cpp
783
set_thread_priority(fThreadId, B_LOW_PRIORITY);
src/apps/processcontroller/ProcessController.cpp
401
set_thread_priority(thread, new_priority);
src/apps/terminal/Shell.cpp
515
set_thread_priority(find_thread(NULL), B_NORMAL_PRIORITY);
src/apps/text_search/Grepper.cpp
398
set_thread_priority(xargsThread, B_LOW_PRIORITY);
src/apps/webpositive/BrowserApp.cpp
196
set_thread_priority(Thread(), B_DISPLAY_PRIORITY);
src/bin/prio.c
34
ret = set_thread_priority(th, prio);
src/bin/renice.c
79
return set_thread_priority(th, prio);
src/kits/media/MediaEventLooper.cpp
182
set_thread_priority(fControlThread, fCurrentPriority);
src/kits/media/MediaEventLooper.cpp
368
set_thread_priority(fControlThread, fCurrentPriority);
src/libs/compat/freebsd_network/kthread.cpp
40
set_thread_priority((thread_id)tdi, prio);
src/servers/input/InputServer.cpp
163
set_thread_priority(find_thread(NULL), B_URGENT_DISPLAY_PRIORITY);
src/servers/mount/AutoMounter.cpp
379
set_thread_priority(Thread(), B_LOW_PRIORITY);
src/servers/registrar/Registrar.cpp
71
set_thread_priority(find_thread(NULL), B_NORMAL_PRIORITY + 1);
src/system/libroot/posix/sys/priority.c
191
set_thread_priority(thread.thread, value);