diff options
author | van Hauser <vh@thc.org> | 2022-07-04 10:01:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 10:01:39 +0200 |
commit | 36a0ab11938ee34f94786cf2d0cb7736758e6f0e (patch) | |
tree | 1009f0e4ae54fbf87c9a798c7cbccc00dd253c11 | |
parent | 1334851e7c35bf7bf35db0dc2a974b2e0249d8f8 (diff) | |
parent | b077a7963b9202d2017235a5a1297c2c94c71c09 (diff) | |
download | afl++-36a0ab11938ee34f94786cf2d0cb7736758e6f0e.tar.gz |
Merge pull request #1466 from rhtenhove/cpubind
feat: show bound cpu
-rw-r--r-- | src/afl-fuzz-init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index 6a653a00..f4b2d908 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -146,6 +146,10 @@ void bind_to_free_cpu(afl_state_t *afl) { } + } else { + + OKF("CPU binding request using -b %d successful.", afl->cpu_to_bind); + } return; |