Module: kamailio Branch: 6.0 Commit: be2fae4075fc23582356e416e1bdbb475d837eda URL: https://github.com/kamailio/kamailio/commit/be2fae4075fc23582356e416e1bdbb47...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2025-04-22T02:01:20+02:00
modules: readme files regenerated - modules ... [skip ci]
---
Modified: src/modules/app_python3/README Modified: src/modules/app_python3s/README
---
Diff: https://github.com/kamailio/kamailio/commit/be2fae4075fc23582356e416e1bdbb47... Patch: https://github.com/kamailio/kamailio/commit/be2fae4075fc23582356e416e1bdbb47...
---
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