Module: kamailio Branch: master Commit: 570db90ccacbe02419fdc9d7c4b8b115f6fb1540 URL: https://github.com/kamailio/kamailio/commit/570db90ccacbe02419fdc9d7c4b8b115...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2025-04-22T02:01:10+02:00
modules: readme files regenerated - app_python3 ... [skip ci]
---
Modified: src/modules/app_python3/README Modified: src/modules/app_python3s/README
---
Diff: https://github.com/kamailio/kamailio/commit/570db90ccacbe02419fdc9d7c4b8b115... Patch: https://github.com/kamailio/kamailio/commit/570db90ccacbe02419fdc9d7c4b8b115...
---
diff --git a/src/modules/app_python3/README b/src/modules/app_python3/README index 5a012417df5..98d7c3725bc 100644 --- a/src/modules/app_python3/README +++ b/src/modules/app_python3/README @@ -177,6 +177,10 @@ modparam("app_python3", "child_init_method", "my_child_init") If set to 0, use PyGILState_Ensure()/PyGILState_Release() (the mode implemented initially).
+ If set to 1, Python threading Thread objects created in the KEMI script + will be scheduled. Otherwise, additional Python threads will not be + scheduled (no release of GIL). + Default value is “0”.
Example 1.4. Set threads_mode parameter diff --git a/src/modules/app_python3s/README b/src/modules/app_python3s/README index af38af3e8e0..cf79c7fed56 100644 --- a/src/modules/app_python3s/README +++ b/src/modules/app_python3s/README @@ -174,6 +174,10 @@ def ksr_script_child_init(): If set to 0, use PyGILState_Ensure()/PyGILState_Release() (the mode implemented initially).
+ If set to 1, Python threading Thread objects created in the KEMI script + will be scheduled. Otherwise, additional Python threads will not be + scheduled (no release of GIL). + Default value is “0”.
Example 1.4. Set threads_mode parameter