diff options
-rw-r--r-- | src/daemon/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/daemon/main.c b/src/daemon/main.c index c135a6be..6c9f6627 100644 --- a/src/daemon/main.c +++ b/src/daemon/main.c @@ -615,7 +615,8 @@ int main(int argc, char *argv[]) { pa_log_info("Dude, your kernel stinks! The chef's recommendation today is Linux with high-resolution timers enabled!"); #ifdef SIGRTMIN - pa_rtsig_configure(SIGRTMIN, SIGRTMAX); + /* Valgrind uses SIGRTMAX. To easy debugging we don't use it here */ + pa_rtsig_configure(SIGRTMIN, SIGRTMAX-1); #endif pa_assert_se(mainloop = pa_mainloop_new()); |