From: Anthony Minessale Date: Thu, 27 Sep 2012 16:42:19 +0000 (-0500) Subject: bump important threads to realtime priority X-Git-Tag: v1.3.0~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c840030247382912a87a3362a4497a9e4dda9b1;p=thirdparty%2Ffreeswitch.git bump important threads to realtime priority --- diff --git a/src/switch_apr.c b/src/switch_apr.c index dfb56d5390..49b7a9b5c5 100644 --- a/src/switch_apr.c +++ b/src/switch_apr.c @@ -640,7 +640,7 @@ struct apr_threadattr_t { SWITCH_DECLARE(switch_status_t) switch_threadattr_priority_increase(switch_threadattr_t *attr) { #ifndef WIN32 - attr->priority = 10; + attr->priority = 99; #endif return SWITCH_STATUS_SUCCESS; }