summaryrefslogtreecommitdiff
path: root/src/bio.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-09-13 15:59:48 +0200
committerantirez <antirez@gmail.com>2011-09-13 15:59:48 +0200
commit02925dd96e3ad5e31a3cdd9abbc2415949de8700 (patch)
treef5d20c07272531faec9abba26c4decb959124464 /src/bio.h
parentd1ec6c8b228e49dbaba943f328c124a5f5529768 (diff)
downloadredis-02925dd96e3ad5e31a3cdd9abbc2415949de8700.tar.gz
bio.o added to redis-server objects
Diffstat (limited to 'src/bio.h')
-rw-r--r--src/bio.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bio.h b/src/bio.h
new file mode 100644
index 000000000..3721fa2b6
--- /dev/null
+++ b/src/bio.h
@@ -0,0 +1,6 @@
+/* Exported API */
+void bioInit(void);
+void bioCreateBackgroundJob(int type, void *data);
+
+/* Background job opcodes */
+#define REDIS_BIO_CLOSE_FILE 1