diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-01-18 10:50:41 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-01-18 10:50:41 +0100 |
commit | fe4d14b25cc4ca9aa10948fd014205eef4e2a3b1 (patch) | |
tree | 0d2f12170e9ffb7dd2c3119a1705b77bf4ed4f55 | |
parent | 44110f28e2502ad2fb5676b80ca420db470870ff (diff) |
afb-common: Cleanup
Change-Id: Ifc5adbdc92c3d034c92dd432c72057f3267c4964
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/afb-common.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/afb-common.c b/src/afb-common.c index 087a6285..c6c876b4 100644 --- a/src/afb-common.c +++ b/src/afb-common.c @@ -32,31 +32,6 @@ static const char *default_locale = NULL; static struct locale_root *rootdir = NULL; -/* -struct sd_event *afb_common_get_thread_event_loop() -{ - sd_event *result; - int rc = sd_event_default(&result); - if (rc != 0) { - errno = -rc; - result = NULL; - } - return result; -} - -static void *sdopen(void **p, int (*f)(void **)) -{ - if (*p == NULL) { - int rc = f(p); - if (rc < 0) { - errno = -rc; - *p = NULL; - } - } - return *p; -} -*/ - static struct sd_bus *sdbusopen(struct sd_bus **p, int (*f)(struct sd_bus **)) { if (*p == NULL) { |