summaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorPablo Neira Ayuso2011-06-09 13:14:11 +0200
committerPablo Neira Ayuso2011-06-09 13:14:11 +0200
commit0b099b27df4325f48749e2cec10dc6f52a21c513 (patch)
tree13624a2e13c84e8c354620a497644aec7b76c9f9 /include/osmocom
parentinclude: document functions required by hsl driver (diff)
downloadlibosmo-abis-0b099b27df4325f48749e2cec10dc6f52a21c513.tar.gz
libosmo-abis-0b099b27df4325f48749e2cec10dc6f52a21c513.tar.xz
libosmo-abis-0b099b27df4325f48749e2cec10dc6f52a21c513.zip
include: remove internal definition that are now in libosmocore
Still in one separate patch for libosmocore, but they may become part of mainline soon.
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/abis/logging.h16
-rw-r--r--include/osmocom/abis/signal.h17
2 files changed, 33 insertions, 0 deletions
diff --git a/include/osmocom/abis/logging.h b/include/osmocom/abis/logging.h
new file mode 100644
index 0000000..c3cac11
--- /dev/null
+++ b/include/osmocom/abis/logging.h
@@ -0,0 +1,16 @@
+#ifndef _OSMO_ABIS_LOGGING_H_
+#define _OSMO_ABIS_LOGGING_H_
+
+#include <osmocom/core/logging.h>
+
+/* logging subsystems. */
+enum {
+ DINP = OSMO_LOG_SS_ABIS_RESERVED,
+ DMUX,
+ DMI,
+ DMIB,
+ DRSL,
+ DNM,
+};
+
+#endif
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