Symbol: B_FIRST_REAL_TIME_PRIORITY
headers/build/HaikuBuildCompatibility.h
64
#ifndef B_FIRST_REAL_TIME_PRIORITY
src/add-ons/input_server/devices/easypen/EasyPenInputDevice.cpp
60
const static uint32 kTabletThreadPriority = B_FIRST_REAL_TIME_PRIORITY + 4;
src/add-ons/input_server/devices/keyboard/KeyboardInputDevice.cpp
56
const static uint32 kKeyboardThreadPriority = B_FIRST_REAL_TIME_PRIORITY + 4;
src/add-ons/input_server/devices/mouse/MouseInputDevice.cpp
64
const static uint32 kMouseThreadPriority = B_FIRST_REAL_TIME_PRIORITY + 4;
src/add-ons/input_server/devices/serial_mouse/MouseInputDevice.cpp
62
const static uint32 kMouseThreadPriority = B_FIRST_REAL_TIME_PRIORITY + 4;
src/add-ons/input_server/devices/tablet/TabletInputDevice.cpp
58
const static uint32 kTabletThreadPriority = B_FIRST_REAL_TIME_PRIORITY + 4;
src/add-ons/input_server/devices/virtio/VirtioInputDevice.cpp
30
kWatcherThreadPriority = B_FIRST_REAL_TIME_PRIORITY + 4,
src/system/kernel/DPC.cpp
14
#define REAL_TIME_PRIORITY B_FIRST_REAL_TIME_PRIORITY
src/system/kernel/scheduler/scheduler_thread.cpp
311
ASSERT(fEffectivePriority < B_FIRST_REAL_TIME_PRIORITY);
src/system/kernel/scheduler/scheduler_thread.h
161
return GetPriority() >= B_FIRST_REAL_TIME_PRIORITY;
src/system/libroot/posix/pthread/pthread.cpp
302
if (info.priority >= B_FIRST_REAL_TIME_PRIORITY)
src/system/libroot/posix/pthread/pthread.cpp
317
if (policy == SCHED_RR && param->sched_priority < B_FIRST_REAL_TIME_PRIORITY)
src/system/libroot/posix/pthread/pthread.cpp
319
if (policy == SCHED_OTHER && param->sched_priority >= B_FIRST_REAL_TIME_PRIORITY)
src/system/libroot/posix/scheduler.cpp
30
return B_FIRST_REAL_TIME_PRIORITY;