Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.6-rc2 12 lines 210 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#define MAX_DESCRIPTION 1024 4#define MAX_DA_NAME_LEN 24 5 6struct monitor { 7 char name[MAX_DA_NAME_LEN]; 8 char desc[MAX_DESCRIPTION]; 9 int enabled; 10}; 11 12int should_stop(void);