summaryrefslogtreecommitdiff
path: root/tools/verification/rv/include/rv.h
blob: 0cab1037a98f74ba35d8f041a75dd7a4e323769a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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 should_stop(void);