afb-common: Cleanup
authorJosé Bollo <jose.bollo@iot.bzh>
Thu, 18 Jan 2018 09:50:41 +0000 (10:50 +0100)
committerJosé Bollo <jose.bollo@iot.bzh>
Thu, 18 Jan 2018 09:50:41 +0000 (10:50 +0100)
Change-Id: Ifc5adbdc92c3d034c92dd432c72057f3267c4964
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
src/afb-common.c

index 087a628..c6c876b 100644 (file)
 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) {