summaryrefslogtreecommitdiffstats
path: root/include/osmocom/core
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmocom/core')
-rw-r--r--include/osmocom/core/logging.h12
-rw-r--r--include/osmocom/core/signal.h6
2 files changed, 9 insertions, 9 deletions
diff --git a/include/osmocom/core/logging.h b/include/osmocom/core/logging.h
index 04692d39..20c1254a 100644
--- a/include/osmocom/core/logging.h
+++ b/include/osmocom/core/logging.h
@@ -39,12 +39,12 @@ void logp(int subsys, char *file, int line, int cont, const char *format, ...) _
/* logging levels defined by the library itself */
#define DLGLOBAL -1
#define DLLAPDM -2
-#define DINP -3
-#define DMUX -4
-#define DMI -5
-#define DMIB -6
-#define DRSL -7
-#define DNM -8
+#define DLINP -3
+#define DLMUX -4
+#define DLMI -5
+#define DLMIB -6
+#define DLRSL -7
+#define DLNM -8
#define OSMO_NUM_DLIB 9
struct log_category {
diff --git a/include/osmocom/core/signal.h b/include/osmocom/core/signal.h
index 7c32c778..2442e510 100644
--- a/include/osmocom/core/signal.h
+++ b/include/osmocom/core/signal.h
@@ -11,8 +11,8 @@
/* signal subsystems. */
enum {
- SS_GLOBAL = OSMO_SIGNAL_SS_RESERVED,
- SS_INPUT,
+ SS_L_GLOBAL = OSMO_SIGNAL_SS_RESERVED,
+ SS_L_INPUT,
};
/* application-defined signal types. */
@@ -21,7 +21,7 @@ enum {
/* signal types. */
enum {
- S_GLOBAL_SHUTDOWN = OSMO_SIGNAL_T_RESERVED,
+ S_L_GLOBAL_SHUTDOWN = OSMO_SIGNAL_T_RESERVED,
};
typedef int osmo_signal_cbfn(unsigned int subsys, unsigned int signal, void *handler_data, void *signal_data);