Searched refs:SCHED_FIFO (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/kernel/uapi/linux/
H A Dsched.h46 #define SCHED_FIFO 1 macro
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dsched.h46 #define SCHED_FIFO 1 macro
/bionic/tests/headers/posix/
H A Dsched_h.c49 MACRO(SCHED_FIFO);
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dsched.h46 #define SCHED_FIFO 1 macro
/bionic/tests/
H A Dsched_test.cpp276 EXPECT_LE(sched_get_priority_min(SCHED_FIFO), sched_get_priority_max(SCHED_FIFO));
H A Dpthread_test.cpp2601 sched_param param = { .sched_priority = sched_get_priority_max(SCHED_FIFO) + 1 };
2603 ASSERT_EQ(0, pthread_attr_setschedpolicy(&attr, SCHED_FIFO));
2621 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) };
2622 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO, &param);
2639 ASSERT_EQ(SCHED_FIFO, actual_policy);
2645 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) };
2646 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO, &param);
2670 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) };
2671 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO | SCHED_RESET_ON_FORK, &param);
2688 ASSERT_EQ(SCHED_FIFO | SCHED_RESET_ON_FOR
[all...]
H A Dspawn_test.cpp181 ASSERT_EQ(0, posix_spawnattr_setschedpolicy(&sa, SCHED_FIFO));
184 ASSERT_EQ(SCHED_FIFO, p);

Completed in 1184 milliseconds