aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/signal.h
blob: 8359f021ea40a7db166d57a7ad72aec9c0c16665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef OSMO_BTS_SIGNAL_H
#define OSMO_BTS_SIGNAL_H

#include <osmocom/core/signal.h>

enum sig_subsys {
	SS_GLOBAL,
};

enum signals_global {
	S_NEW_SYSINFO,
	S_NEW_OP_STATE,
	S_NEW_NSE_ATTR,
	S_NEW_CELL_ATTR,
	S_NEW_NSVC_ATTR,
};

struct nm_statechg_signal_data {
	struct gsm_abis_mo *mo;
	uint8_t old_state;
	uint8_t new_state;
};

#endif