some more priority tweaks

This commit is contained in:
Anthony Minessale
2012-10-03 14:10:22 -05:00
parent fd177cdf33
commit 6d01ad5e38
2 changed files with 3 additions and 3 deletions

View File

@@ -736,7 +736,7 @@ SWITCH_DECLARE(int32_t) set_realtime_priority(void)
char data[] = "-1\n";
struct sched_param sched = { 0 };
sched.sched_priority = SWITCH_PRI_LOW;
if (sched_setscheduler(0, SCHED_RR, &sched)) {
if (sched_setscheduler(0, SCHED_FIFO, &sched)) {
sched.sched_priority = 0;
if (sched_setscheduler(0, SCHED_OTHER, &sched)) {
return -1;