summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-06-16 16:34:40 +0200
committerLennart Poettering <lennart@poettering.net>2009-06-16 16:34:40 +0200
commitdb2d157f0d8922e88689631b9de26aea30229182 (patch)
treebb0bde2cf6728824d173109c00b6c7389bede0f0
parentc439aabf2e753f265284e7cd662d03b40b06143c (diff)
change default realtime priority limits
-rw-r--r--rtkit-daemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtkit-daemon.c b/rtkit-daemon.c
index cb27c4d..987cd40 100644
--- a/rtkit-daemon.c
+++ b/rtkit-daemon.c
@@ -101,13 +101,13 @@
#define TIMESPEC_MSEC(ts) (((int64_t) (ts).tv_sec * 1000LL) + ((int64_t) (ts).tv_nsec / 1000000LL))
/* If we actually execute a request we temporarily upgrade our realtime priority to this level */
-static unsigned our_realtime_priority = 30;
+static unsigned our_realtime_priority = 21;
/* Normally we run at this nice level */
static int our_nice_level = 1;
/* The maximum realtime priority to hand out */
-static unsigned max_realtime_priority = 29;
+static unsigned max_realtime_priority = 20;
/* The minimum nice level to hand out */
static int min_nice_level = -15;