From 9f2814283e88fa73f06dd591eed5dbc41ca4e638 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 22 Mar 2019 13:22:46 +0100 Subject: [PATCH] Revert "signal.c: Make non-exported tall_sigh_ctx static" This reverts commit cff2242e686be9ac19ba5757a710bc769a9201ec. The patch broke openbsc: ../../src/libcommon/libcommon.a(talloc_ctx.o): In function `talloc_ctx_init': /build/openbsc/src/libcommon/talloc_ctx.c:50: undefined reference to `tall_sigh_ctx' See also: https://lists.osmocom.org/pipermail/openbsc/2019-March/012843.html Change-Id: Ib4cb31427a1cad063bc9f1a10b9c3182b314a9f2 --- src/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signal.c b/src/signal.c index f9884198f..be3b77789 100644 --- a/src/signal.c +++ b/src/signal.c @@ -36,7 +36,7 @@ * \file signal.c */ -static void *tall_sigh_ctx; +void *tall_sigh_ctx; static LLIST_HEAD(signal_handler_list); struct signal_handler {