aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/utils.h
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-12-09 05:53:18 +0100
committerHarald Welte <laforge@gnumonks.org>2017-12-12 18:00:24 +0000
commit84ea2e037490a9ad6c0a192cf237f88fd83cdd88 (patch)
tree2d4ff0d57112780b40bce92cf9c6a134d9c8138c /include/osmocom/core/utils.h
parent32e5641dbbfd91b650a9ec8cf62d28fd22109e9e (diff)
logging vty: describe 'logging set-log-mask' command, add OSMO_STRINGIFY_VAL()
Diffstat (limited to 'include/osmocom/core/utils.h')
-rw-r--r--include/osmocom/core/utils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/core/utils.h b/include/osmocom/core/utils.h
index 0a3805df..5c660cd8 100644
--- a/include/osmocom/core/utils.h
+++ b/include/osmocom/core/utils.h
@@ -19,6 +19,8 @@
* Note: if nested within another preprocessor macro, this will
* stringify the value of x instead of its name. */
#define OSMO_STRINGIFY(x) #x
+/*! Stringify the value of a macro x, e.g. a port number. */
+#define OSMO_STRINGIFY_VAL(x) OSMO_STRINGIFY(x)
/*! Make a value_string entry from an enum value name */
#define OSMO_VALUE_STRING(x) { x, #x }
/*! Number of bytes necessary to store given BITS */