You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
#ifndef __FILELIFE_H
|
|
#define __FILELIFE_H
|
|
|
|
#define DNAME_INLINE_LEN 32
|
|
#define TASK_COMM_LEN 16
|
|
|
|
struct event {
|
|
char file[DNAME_INLINE_LEN];
|
|
char task[TASK_COMM_LEN];
|
|
__u64 delta_ns;
|
|
pid_t tgid;
|
|
};
|
|
|
|
#endif /* __FILELIFE_H */
|