aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2019-10-08 01:07:38 +0200
committerlaforge <laforge@osmocom.org>2019-11-23 08:03:39 +0000
commit4bf8df5c428deaefd3929935ca86259824c0e792 (patch)
treec365b97474e35871729bb95b8dc8d3d0f48a5fed
parentf8d0389c70ed97cbb0488c0b7e5ac594d566fdb5 (diff)
fsm: use deferred deallocation
Since osmo-bsc uses the MGCP client FSMs, it is required to enable this new feature to guarantee safe operation. The issue is described in detail in commit logs linked below. Depends: Ief4dba9ea587c9b4aea69993e965fbb20fb80e78 (libosmocore), I0adc13a1a998e953b6c850efa2761350dd07e03a (libosmocore) Related: I7df2e9202b04e7ca7366bb0a8ec53cf3bb14faf3 (osmo-mgw) Change-Id: Ib7fce7b7d54dfb87af97544796680919e5929a50
-rw-r--r--src/osmo-bsc/osmo_bsc_main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osmo-bsc/osmo_bsc_main.c b/src/osmo-bsc/osmo_bsc_main.c
index 0fe35b354..da2914d86 100644
--- a/src/osmo-bsc/osmo_bsc_main.c
+++ b/src/osmo-bsc/osmo_bsc_main.c
@@ -821,6 +821,8 @@ int main(int argc, char **argv)
osmo_stats_init(tall_bsc_ctx);
rate_ctr_init(tall_bsc_ctx);
+ osmo_fsm_set_dealloc_ctx(OTC_SELECT);
+
/* Allocate global gsm_network struct */
rc = bsc_network_alloc();
if (rc) {
@@ -939,7 +941,7 @@ int main(int argc, char **argv)
}
while (1) {
- osmo_select_main(0);
+ osmo_select_main_ctx(0);
}
return 0;