From: José Bollo Date: Thu, 18 Jan 2018 09:50:41 +0000 (+0100) Subject: afb-common: Cleanup X-Git-Tag: flounder_5.99.1~96 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;ds=inline;h=fe4d14b25cc4ca9aa10948fd014205eef4e2a3b1;p=src%2Fapp-framework-binder.git afb-common: Cleanup Change-Id: Ifc5adbdc92c3d034c92dd432c72057f3267c4964 Signed-off-by: José Bollo --- 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) {