Change in osmo-bts[master]: common: Enable SIGABRT signal handler

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Wed Nov 25 22:23:39 UTC 2020


pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bts/+/21354 )

Change subject: common: Enable SIGABRT signal handler
......................................................................

common: Enable SIGABRT signal handler

The signal handler function was coded to expect SIGABRT but the signal
handler itself was never enabled for this signal.

Change-Id: Id95d64efe8765fcf19eb09cd3db7895166c6adab
---
M src/common/main.c
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, approved



diff --git a/src/common/main.c b/src/common/main.c
index b2534d5..f75e096 100644
--- a/src/common/main.c
+++ b/src/common/main.c
@@ -363,7 +363,7 @@
 
 	signal(SIGINT, &signal_handler);
 	signal(SIGTERM, &signal_handler);
-	//signal(SIGABRT, &signal_handler);
+	signal(SIGABRT, &signal_handler);
 	signal(SIGUSR1, &signal_handler);
 	signal(SIGUSR2, &signal_handler);
 	osmo_init_ignore_signals();

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-bts/+/21354
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Change-Id: Id95d64efe8765fcf19eb09cd3db7895166c6adab
Gerrit-Change-Number: 21354
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20201125/9cf5591a/attachment.htm>


More information about the gerrit-log mailing list