summaryrefslogtreecommitdiffstats
path: root/tests/qtest/fuzz/fork_fuzz.h
blob: 9ecb8b58ef86a0de4c250ebccdf998fa693cd6ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Fork-based fuzzing helpers
 *
 * Copyright Red Hat Inc., 2019
 *
 * Authors:
 *  Alexander Bulekov   <alxndr@bu.edu>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

#ifndef FORK_FUZZ_H
#define FORK_FUZZ_H

extern uint8_t __FUZZ_COUNTERS_START;
extern uint8_t __FUZZ_COUNTERS_END;

void counter_shm_init(void);

#endif