]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FSCORE-578
authorroot <root@deathstar.freeswitch.org>
Wed, 31 Mar 2010 17:28:50 +0000 (12:28 -0500)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 31 Mar 2010 17:40:06 +0000 (12:40 -0500)
src/switch_time.c

index c798ff82271c47cb2f8b2ea95a7e76f8534331a0..cbdc2f8eb14db9606e84e6ec67eff7920a39f0db 100644 (file)
@@ -205,7 +205,7 @@ SWITCH_DECLARE(void) switch_time_calibrate_clock(void)
        if (res > 1500) {
                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
                                                  "Timer resolution of %ld microseconds detected!\n"
-                                                 "Do you have your kernel timer set to higher than 1 kHz? You may experience audio problems.\n", ts.tv_nsec / 1000);
+                                                 "Do you have your kernel timer frequency set to lower than 1,000Hz? You may experience audio problems.\n", ts.tv_nsec / 1000);
                do_sleep(5000000);
                switch_time_set_cond_yield(SWITCH_TRUE);
                return;
@@ -226,7 +226,7 @@ SWITCH_DECLARE(void) switch_time_calibrate_clock(void)
                if (diff > 1500) {
                        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
                                                          "Abnormally large timer gap %d detected!\n"
-                                                         "Do you have your kernel timer set to higher than 1 kHz? You may experience audio problems.\n", diff);
+                                                         "Do you have your kernel timer frequency set to lower than 1,000Hz? You may experience audio problems.\n", diff);
                        do_sleep(5000000);
                        switch_time_set_cond_yield(SWITCH_TRUE);
                        return;