summaryrefslogtreecommitdiffstats
path: root/include/osmocom/abis/signal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmocom/abis/signal.h')
-rw-r--r--include/osmocom/abis/signal.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/osmocom/abis/signal.h b/include/osmocom/abis/signal.h
new file mode 100644
index 0000000..cf5ad55
--- /dev/null
+++ b/include/osmocom/abis/signal.h
@@ -0,0 +1,17 @@
+#ifndef _OSMO_ABIS_SIGNAL_H_
+#define _OSMO_ABIS_SIGNAL_H_
+
+#include <osmocom/core/signal.h>
+
+/* signal subsystems. */
+enum {
+ SS_GLOBAL = OSMO_SIGNAL_SS_ABIS_RESERVED,
+ SS_INPUT,
+};
+
+/* signal types. */
+enum {
+ S_GLOBAL_SHUTDOWN = OSMO_SIGNAL_T_ABIS_RESERVED,
+};
+
+#endif