afb-apiset: Fix start of apis
[src/app-framework-binder.git] / src / evmgr.c
index 2dc35e4..744d08b 100644 (file)
@@ -47,6 +47,14 @@ struct evmgr
 #define EVLOOP_STATE_WAIT           1U
 #define EVLOOP_STATE_RUN            2U
 
+/**
+ * prepare the evmgr to run
+ */
+void evmgr_prepare_run(struct evmgr *evmgr)
+{
+       evmgr->state = EVLOOP_STATE_WAIT|EVLOOP_STATE_RUN;
+}
+
 /**
  * Run the event loop is set.
  */
@@ -185,13 +193,14 @@ int evmgr_create(struct evmgr **result)
        /* creates the eventfd for waking up polls */
        evmgr->efd = eventfd(0, EFD_CLOEXEC|EFD_SEMAPHORE);
        if (evmgr->efd < 0) {
-               ERROR("can't make eventfd for events");
                rc = -errno;
+               ERROR("can't make eventfd for events");
                goto error1;
        }
        /* create the systemd event loop */
        evmgr->sdev = systemd_get_event_loop();
        if (!evmgr->sdev) {
+               rc = -errno;
                ERROR("can't make new event loop");
                goto error2;
        }