scx_arena/lib.rs
1// Copyright (c) Meta Platforms, Inc. and affiliates.
2//
3// This software may be used and distributed according to the terms of the
4// GNU General Public License version 2.
5
6//! # SCX Arena library setup utilities
7//!
8//! Crate for setting up the BPF arena library for sched-ext schedulers.
9
10mod bpf_skel;
11
12mod arenalib;
13pub use arenalib::ArenaLib;