summaryrefslogtreecommitdiffstats
path: root/include/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/process.h')
-rw-r--r--include/process.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/process.h b/include/process.h
index 9d29f22..41c7c10 100644
--- a/include/process.h
+++ b/include/process.h
@@ -5,6 +5,7 @@ enum process_type {
CTD_PROC_ANY, /* any type */
CTD_PROC_FLUSH, /* flush process */
CTD_PROC_COMMIT, /* commit process */
+ CTD_PROC_MAX
};
#define CTD_PROC_F_EXCL (1 << 0) /* only one process at a time */
@@ -19,5 +20,6 @@ struct child_process {
int fork_process_new(int type, int flags, void (*cb)(void *data), void *data);
int fork_process_delete(int pid);
+void fork_process_dump(int fd);
#endif