mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
13 lines
210 B
C
13 lines
210 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
#define MAX_DESCRIPTION 1024
|
||
|
#define MAX_DA_NAME_LEN 24
|
||
|
|
||
|
struct monitor {
|
||
|
char name[MAX_DA_NAME_LEN];
|
||
|
char desc[MAX_DESCRIPTION];
|
||
|
int enabled;
|
||
|
};
|
||
|
|
||
|
int should_stop(void);
|