diff options
author | vanhauser-thc <vh@thc.org> | 2024-06-04 14:47:58 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-06-04 14:48:02 +0200 |
commit | 2d9b793dbbe9288a1caa4459c280678179bb46c9 (patch) | |
tree | 41982737fe085d21675c11625e8b81d936d57fce /src/afl-fuzz-stats.c | |
parent | 7f02f0da616cf2adf11c139e203c52442dbe52cd (diff) | |
download | afl++-2d9b793dbbe9288a1caa4459c280678179bb46c9.tar.gz |
AFL_NO_SYNC
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index eafeebba..609b11e4 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -2487,7 +2487,7 @@ void show_init_stats(afl_state_t *afl) { } -void update_calibration_time(afl_state_t *afl, u64 *time) { +inline void update_calibration_time(afl_state_t *afl, u64 *time) { u64 cur = get_cur_time_us(); afl->calibration_time_us += cur - *time; @@ -2495,7 +2495,7 @@ void update_calibration_time(afl_state_t *afl, u64 *time) { } -void update_trim_time(afl_state_t *afl, u64 *time) { +inline void update_trim_time(afl_state_t *afl, u64 *time) { u64 cur = get_cur_time_us(); afl->trim_time_us += cur - *time; @@ -2503,7 +2503,7 @@ void update_trim_time(afl_state_t *afl, u64 *time) { } -void update_sync_time(afl_state_t *afl, u64 *time) { +inline void update_sync_time(afl_state_t *afl, u64 *time) { u64 cur = get_cur_time_us(); afl->sync_time_us += cur - *time; |