diff options
author | Nils Bars <nils.bars@rub.de> | 2022-10-21 12:13:43 +0200 |
---|---|---|
committer | Nils Bars <nils.bars@rub.de> | 2022-10-21 12:47:00 +0200 |
commit | 7512316b46a25180729ff8c568a6061a0ab19fea (patch) | |
tree | 81db6020d1d6e1c8d8f050fe647a25c79f1dd37d /include/envs.h | |
parent | f84ea696606b3dd6ae40006e5efb9f178651e916 (diff) | |
download | afl++-7512316b46a25180729ff8c568a6061a0ab19fea.tar.gz |
Add AFL_FORK_SERVER_KILL_SIGNAL environment variable.
The AFL_FORK_SERVER_KILL_SIGNAL variable allows to configure the signal used to kill the fork server on termination.
Diffstat (limited to 'include/envs.h')
-rw-r--r-- | include/envs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/envs.h b/include/envs.h index 2204a100..33c09780 100644 --- a/include/envs.h +++ b/include/envs.h @@ -110,6 +110,7 @@ static char *afl_environment_variables[] = { "AFL_INST_RATIO", "AFL_KEEP_TIMEOUTS", "AFL_KILL_SIGNAL", + "AFL_FORK_SERVER_KILL_SIGNAL", "AFL_KEEP_TRACES", "AFL_KEEP_ASSEMBLY", "AFL_LD_HARD_FAIL", @@ -239,4 +240,3 @@ static char *afl_environment_variables[] = { extern char *afl_environment_variables[]; #endif - |