forked from sched-ext/scx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename .c to .h, .h to .h.h, replace bindgen stubs with generated
- Loading branch information
1 parent
56798f6
commit 21f4ba9
Showing
10 changed files
with
901 additions
and
570 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
/* automatically generated by rust-bindgen 0.70.1 */ | ||
#![allow(non_upper_case_globals)] | ||
#![allow(non_camel_case_types)] | ||
#![allow(non_snake_case)] | ||
#![allow(dead_code)] | ||
|
||
include!(concat!(env!("OUT_DIR"), "/bindings.rs")); | ||
pub const scx_consts_SCX_DSP_DFL_MAX_BATCH: scx_consts = 32; | ||
pub const scx_consts_SCX_DSP_MAX_LOOPS: scx_consts = 32; | ||
pub const scx_consts_SCX_WATCHDOG_MAX_TIMEOUT: scx_consts = 30000; | ||
pub const scx_consts_SCX_EXIT_BT_LEN: scx_consts = 64; | ||
pub const scx_consts_SCX_EXIT_MSG_LEN: scx_consts = 1024; | ||
pub const scx_consts_SCX_EXIT_DUMP_DFL_LEN: scx_consts = 32768; | ||
pub const scx_consts_SCX_CPUPERF_ONE: scx_consts = 1024; | ||
pub type scx_consts = ::std::os::raw::c_uint; | ||
pub const scx_exit_kind_SCX_EXIT_NONE: scx_exit_kind = 0; | ||
pub const scx_exit_kind_SCX_EXIT_DONE: scx_exit_kind = 1; | ||
pub const scx_exit_kind_SCX_EXIT_UNREG: scx_exit_kind = 64; | ||
pub const scx_exit_kind_SCX_EXIT_UNREG_BPF: scx_exit_kind = 65; | ||
pub const scx_exit_kind_SCX_EXIT_UNREG_KERN: scx_exit_kind = 66; | ||
pub const scx_exit_kind_SCX_EXIT_SYSRQ: scx_exit_kind = 67; | ||
pub const scx_exit_kind_SCX_EXIT_ERROR: scx_exit_kind = 1024; | ||
pub const scx_exit_kind_SCX_EXIT_ERROR_BPF: scx_exit_kind = 1025; | ||
pub const scx_exit_kind_SCX_EXIT_ERROR_STALL: scx_exit_kind = 1026; | ||
pub type scx_exit_kind = ::std::os::raw::c_uint; |
Oops, something went wrong.