fuzz: support for fork-based fuzzing.
[qemu/ar7.git] / tests / qtest / fuzz / fork_fuzz.h
blob9ecb8b58ef86a0de4c250ebccdf998fa693cd6ce
1 /*
2 * Fork-based fuzzing helpers
4 * Copyright Red Hat Inc., 2019
6 * Authors:
7 * Alexander Bulekov <alxndr@bu.edu>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #ifndef FORK_FUZZ_H
15 #define FORK_FUZZ_H
17 extern uint8_t __FUZZ_COUNTERS_START;
18 extern uint8_t __FUZZ_COUNTERS_END;
20 void counter_shm_init(void);
22 #endif