/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * * Test that sched_get_priority_max() returns the maximum value on * success for SCHED_FIFO policy. */ #include #include #include #include "posixtest.h" int main(int argc, char **argv) { int result = -1; result = sched_get_priority_max(SCHED_FIFO); if(result != -1 && errno == 0 ) { printf("The maximum priority for policy SCHED_FIFO is %i.\n", result); printf("Test PASSED\n"); return PTS_PASS; } else { perror("An error occurs"); return PTS_FAIL; } printf("This code should not be executed.\n"); return PTS_UNRESOLVED; }