Module: kamailio Branch: master Commit: 7cc2d3168f4cb5be2c9a0d9158cc9c74705bc3ad URL: https://github.com/kamailio/kamailio/commit/7cc2d3168f4cb5be2c9a0d9158cc9c74...
Author: Henning Westerholt hw@skalatan.de Committer: Henning Westerholt hw@skalatan.de Date: 2019-07-28T19:52:44+02:00
async: small extension of the description for the ms_timer parameter
---
Modified: src/modules/async/doc/async_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/7cc2d3168f4cb5be2c9a0d9158cc9c74... Patch: https://github.com/kamailio/kamailio/commit/7cc2d3168f4cb5be2c9a0d9158cc9c74...
---
diff --git a/src/modules/async/doc/async_admin.xml b/src/modules/async/doc/async_admin.xml index 0ad1d3b4fe..5e9277a194 100644 --- a/src/modules/async/doc/async_admin.xml +++ b/src/modules/async/doc/async_admin.xml @@ -92,9 +92,10 @@ modparam("async", "workers", 2) <title><varname>ms_timer</varname> (int)</title> <para> Enables millisecond timer for async_ms_sleep() and async_ms_route() functions. - The integer value is the timer resolution in milliseconds. - ms_timer = 1 enables 1 millisecond timer but generates higher load on the system. - ms_timer = 20 enables 20 ms timer. + The integer value is the timer resolution in milliseconds. A smaller timer + resultion will generate a higher load on the system. If you set ms_timer + to 1 you will get a timer with 1 millisecond resultion, a setting of 20 + provides a resultion of 20ms. </para> <para> <emphasis> @@ -105,7 +106,7 @@ modparam("async", "workers", 2) <title>Set <varname>ms_timer</varname> parameter</title> <programlisting format="linespecific"> ... -modparam("async", "ms_timer", 1) +modparam("async", "ms_timer", 10) ... </programlisting> </example>