Hi Daniel, Unfortunately I'm still getting the bus error in the child processes. I added the following debug ``` diff --git a/modules/tm/tm.c b/modules/tm/tm.c index 29a7326..cb972df 100644 --- a/modules/tm/tm.c +++ b/modules/tm/tm.c @@ -824,6 +824,7 @@ static int mod_init(void) tm_ctx_init(); #endif tm_init = 1; + LOG(L_ERR, "tm_auto_inv_100_r: %s\n", cfg_get(tm, tm_cfg, tm_auto_inv_100_r)); return 0; }
@@ -844,6 +845,7 @@ static int child_init(int rank) " generator\n"); return -2; } + LOG(L_ERR, "tm_auto_inv_100_r: %s\n", cfg_get(tm, tm_cfg, tm_auto_inv_100_r)); return 0; } ``` When kamailio starts up, I receive the below log messge
0(4498) ERROR: tm [tm.c:827]: mod_init(): tm_auto_inv_100_r: Trying Bus Error (core dumped)
Program terminated with signal 10, Bus error. #0 0xfffffffed125b2b4 in child_init (rank=-127) at tm.c:848 848 LOG(L_ERR, "tm_auto_inv_100_r: %s\n", cfg_get(tm, tm_cfg, tm_auto_inv_100_r));
--- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/655#issuecomment-224684993