diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-25 14:53:28 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-25 14:53:28 +0900 |
commit | 943b8a3d7ab56a393fe2fe3060a584b35beba1eb (patch) | |
tree | 39f48b4c9d54cceba5254c522ed520190b69144c /include/forkserver.h | |
parent | 82752fe38db590184f7f1725954f906da397d91c (diff) | |
download | afl++-943b8a3d7ab56a393fe2fe3060a584b35beba1eb.tar.gz |
Pass dataflow map shm to fork server
Diffstat (limited to 'include/forkserver.h')
-rw-r--r-- | include/forkserver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/forkserver.h b/include/forkserver.h index d3d0e086..882f4f01 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -103,7 +103,8 @@ typedef struct afl_forkserver { /* a program that includes afl-forkserver needs to define these */ - u8 *trace_bits; /* SHM with instrumentation bitmap */ + u8 *trace_bits; /* SHM with code coverage bitmap */ + u32 *dfg_bits; /* SHM with DFG coverage bitmap */ s32 fsrv_pid, /* PID of the fork server */ child_pid, /* PID of the fuzzed program */ |