libbpf-rs 0.26.2

libbpf-rs is a safe, idiomatic, and opinionated wrapper around libbpf-sys
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
#ifndef __RUNQSLOWER_H
#define __RUNQSLOWER_H

#include "vmlinux.h"

#define TASK_COMM_LEN 16

struct event {
    u8 task[TASK_COMM_LEN];
    __u64 delta_us;
    pid_t pid;
};

#endif /* __RUNQSLOWER_H */