about summary refs log tree commit diff
path: root/include/forkserver.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/forkserver.h')
-rw-r--r--include/forkserver.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/forkserver.h b/include/forkserver.h
index 7470dbbc..24fa3e1b 100644
--- a/include/forkserver.h
+++ b/include/forkserver.h
@@ -66,15 +66,23 @@ typedef struct afl_forkserver {
 
   u32 prev_timed_out;                   /* if prev forkserver run timed out */
 
+  u8 qemu_mode;                         /* if running in qemu mode or not   */
+
+  char *cmplog_binary;                    /* the name of the cmplog binary    */
+
+  /* Function to kick off the forkserver child */
+  void (*init_child_func)(struct afl_forkserver *fsrv, char **argv);
+
   u8 *function_opt;                     /* for autodictionary: afl ptr      */
 
   void (*function_ptr)(void *afl_tmp, u8 *mem, u32 len);
 
+
 } afl_forkserver_t;
 
 void afl_fsrv_init(afl_forkserver_t *fsrv);
 void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
-                    volatile u8 *stop_soon_p);
+                    volatile u8 *stop_soon_p, u8 debug_child_output);
 void afl_fsrv_deinit(afl_forkserver_t *fsrv);
 void afl_fsrv_killall();