summaryrefslogtreecommitdiff
path: root/tools/verification/rv/include/rv.h
blob: 6f668eb266cbb49b6667fc5cb9cc5ef0b8f28086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0

#define MAX_DESCRIPTION 1024
#define MAX_DA_NAME_LEN	32

struct monitor {
	char name[MAX_DA_NAME_LEN];
	char desc[MAX_DESCRIPTION];
	int enabled;
	int nested;
};

int should_stop(void);