diff options
author | van Hauser <vh@thc.org> | 2022-01-21 13:06:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 13:06:15 +0100 |
commit | 2bb86863e6d15dbd5bb0c381afa51f476302784e (patch) | |
tree | 020fb8d0b012d5ebfd7ded0b32c00b79851a0532 /include | |
parent | b4c2fc94166b22a77c521884a07fdfee2098147a (diff) | |
parent | 26a3d1b53b0a3ae690735c550c2985f079f3c672 (diff) | |
download | afl++-2bb86863e6d15dbd5bb0c381afa51f476302784e.tar.gz |
Merge branch 'dev' into docs_quality_assurance_3
Diffstat (limited to 'include')
-rw-r--r-- | include/forkserver.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/forkserver.h b/include/forkserver.h index 48db2e26..4a05b17e 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -54,7 +54,13 @@ typedef enum NyxReturnValue { typedef struct { void *(*nyx_new)(const char *sharedir, const char *workdir, - uint32_t worker_id, uint32_t cpu_id, bool create_snapshot); + uint32_t cpu_id, uint32_t input_buffer_size, + bool input_buffer_write_protection); + void *(*nyx_new_parent)(const char *sharedir, const char *workdir, + uint32_t cpu_id, uint32_t input_buffer_size, + bool input_buffer_write_protection); + void *(*nyx_new_child)(const char *sharedir, const char *workdir, + uint32_t cpu_id, uint32_t worker_id); void (*nyx_shutdown)(void *qemu_process); void (*nyx_option_set_reload_mode)(void *qemu_process, bool enable); void (*nyx_option_set_timeout)(void *qemu_process, uint8_t timeout_sec, |