mirror of
https://github.com/eunomia-bpf/bpf-developer-tutorial.git
synced 2026-02-03 18:24:27 +08:00
19 lines
338 B
C
19 lines
338 B
C
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
/* Copyright (c) 2020 Facebook */
|
|
#ifndef __BOOTSTRAP_H
|
|
#define __BOOTSTRAP_H
|
|
|
|
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
#pragma once
|
|
|
|
#define MAX_PIDS 102400
|
|
#define MAX_SLOTS 25
|
|
|
|
enum units {
|
|
NSEC,
|
|
USEC,
|
|
MSEC,
|
|
};
|
|
|
|
#endif /* __BOOTSTRAP_H */
|