summaryrefslogtreecommitdiffstats
path: root/daemon/defer.h
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/defer.h')
-rw-r--r--daemon/defer.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/daemon/defer.h b/daemon/defer.h
index b110151d..ab7a6a8f 100644
--- a/daemon/defer.h
+++ b/daemon/defer.h
@@ -3,8 +3,13 @@
#include "lib/utils.h"
#include "lib/kru.h"
-/// Initialize defer, incl. shared memory with KRU.
-int defer_init(uv_loop_t *loop);
+/// Initialize defer, incl. shared memory with KRU, excl. idle.
+/// To be called from Lua; defer is disabled by default otherwise.
+KR_EXPORT
+int defer_init(const char *mmap_file, int cpus);
+
+/// Initialize idle.
+int defer_init_idle(uv_loop_t *loop);
/// Deinitialize shared memory.
void defer_deinit(void);