reduce the time interval in which the secondaries sync

This commit is contained in:
van Hauser
2020-06-30 17:33:47 +02:00
parent 06264df168
commit 7527c76c74
2 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@
/* Sync interval (every n havoc cycles): */ /* Sync interval (every n havoc cycles): */
#define SYNC_INTERVAL 5 #define SYNC_INTERVAL 8
/* Output directory reuse grace period (minutes): */ /* Output directory reuse grace period (minutes): */

View File

@ -1280,7 +1280,7 @@ int main(int argc, char **argv_orig, char **envp) {
if (unlikely(afl->is_main_node)) { if (unlikely(afl->is_main_node)) {
if (!(sync_interval_cnt++ % (SYNC_INTERVAL / 2))) { sync_fuzzers(afl); } if (!(sync_interval_cnt++ % (SYNC_INTERVAL / 3))) { sync_fuzzers(afl); }
} else { } else {