use lazy_static::lazy_static;
use std::collections::HashMap;
lazy_static! {
pub static ref SYSCALL_NAMES: HashMap<&'static str, HashMap<u32, &'static str>> = {
let mut hm = HashMap::new();
/* @SYSCALL_BUILD@ */
hm
};
}
pub static URING_OPS: [Option<&[u8]>; 64] = [
/* @URING_OPS@ */
];