aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/paging.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-08-15 03:21:45 +0200
committerHarald Welte <laforge@gnumonks.org>2009-08-15 03:21:45 +0200
commitb2dc37f51268cc25378f77b930477238740e65a1 (patch)
tree8fb23d37b4184458ac06d325d2b6aae4b5b177b4 /openbsc/src/paging.c
parente903edf5801eb63f65138408c7b5d7c2fa22a231 (diff)
parentd5d5e1d460bc55f10c007ccaa92cef2972711132 (diff)
Merge commit 'har/master'
Diffstat (limited to 'openbsc/src/paging.c')
-rw-r--r--openbsc/src/paging.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/openbsc/src/paging.c b/openbsc/src/paging.c
index 062eca80c..f7ee81d24 100644
--- a/openbsc/src/paging.c
+++ b/openbsc/src/paging.c
@@ -49,7 +49,7 @@
#define PAGING_TIMEOUT 1, 75000
#define MAX_PAGING_REQUEST 750
-static void *tall_paging_ctx;
+void *tall_paging_ctx;
static unsigned int calculate_group(struct gsm_bts *bts, struct gsm_subscriber *subscr)
{
@@ -316,8 +316,3 @@ void paging_update_buffer_space(struct gsm_bts *bts, u_int16_t free_slots)
{
bts->paging.available_slots = free_slots;
}
-
-static __attribute__((constructor)) void on_dso_load_paging(void)
-{
- tall_paging_ctx = talloc_named_const(NULL, 1, "paging_request");
-}