From: Anthony Minessale Date: Tue, 9 Jun 2009 17:26:15 +0000 (+0000) Subject: increase cond_next time to 10ms X-Git-Tag: v1.0.4~529 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35b2575b3269cea087284abd9bf86b3c535d59ba;p=thirdparty%2Ffreeswitch.git increase cond_next time to 10ms git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13727 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_time.c b/src/switch_time.c index 8779e2e714..d9070579e0 100644 --- a/src/switch_time.c +++ b/src/switch_time.c @@ -193,7 +193,7 @@ SWITCH_DECLARE(void) switch_sleep(switch_interval_time_t t) SWITCH_DECLARE(void) switch_cond_next(void) { #ifdef DISABLE_1MS_COND - do_sleep(1000); + do_sleep(10000); #else if (globals.RUNNING != 1 || !runtime.timestamp || globals.use_cond_yield != 1) { do_sleep(1000);