Andrii Nakryiko | 9c01546 | 2020-01-12 23:31:42 -0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ |
2 | #ifndef __RUNQSLOWER_H | ||||
3 | #define __RUNQSLOWER_H | ||||
4 | |||||
5 | #define TASK_COMM_LEN 16 | ||||
6 | |||||
7 | struct event { | ||||
8 | char task[TASK_COMM_LEN]; | ||||
9 | __u64 delta_us; | ||||
10 | pid_t pid; | ||||
11 | }; | ||||
12 | |||||
13 | #endif /* __RUNQSLOWER_H */ |