mirror of
https://github.com/eunomia-bpf/bpf-developer-tutorial.git
synced 2026-02-03 10:14:44 +08:00
17 lines
235 B
C
17 lines
235 B
C
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
#ifndef __EXECSNOOP_H
|
|
#define __EXECSNOOP_H
|
|
|
|
#define TASK_COMM_LEN 16
|
|
|
|
struct event {
|
|
int pid;
|
|
int ppid;
|
|
int uid;
|
|
char comm[TASK_COMM_LEN];
|
|
};
|
|
|
|
#endif /* __EXECSNOOP_H */
|
|
|
|
|