diff options
author | vanhauser-thc <vh@thc.org> | 2023-02-23 11:22:40 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-02-23 11:22:40 +0100 |
commit | 0c0a6c3bfabf0facaed33fae1aa5ad54a6a11b32 (patch) | |
tree | c690bb07308fa8327437cbae4bee7db190fa8543 /src/afl-gotcpu.c | |
parent | c33f8751e3f1051c4fe6859d16a0494282c8e34b (diff) | |
download | afl++-0c0a6c3bfabf0facaed33fae1aa5ad54a6a11b32.tar.gz |
regression fix
Diffstat (limited to 'src/afl-gotcpu.c')
-rw-r--r-- | src/afl-gotcpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-gotcpu.c b/src/afl-gotcpu.c index 8988fd54..4f851099 100644 --- a/src/afl-gotcpu.c +++ b/src/afl-gotcpu.c @@ -92,7 +92,7 @@ static u32 measure_preemption(u32 target_ms) { volatile u32 v1, v2 = 0; u64 st_t, en_t, st_c, en_c, real_delta, slice_delta; - //s32 loop_repeats = 0; + // s32 loop_repeats = 0; st_t = get_cur_time_us(); st_c = get_cpu_usage_us(); @@ -113,7 +113,7 @@ repeat_loop: if (en_t - st_t < target_ms * 1000) { - //loop_repeats++; + // loop_repeats++; goto repeat_loop; } |