starry-kernel 0.7.6

A Linux-compatible OS kernel built on ArceOS unikernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod addr;
mod cmsg;
mod io;
mod name;
mod opt;
mod socket;

#[cfg(axtest)]
pub(crate) use self::addr::net_addr_conversion_rules_hold_for_test;
#[cfg(axtest)]
pub(crate) use self::cmsg::cmsg_alignment_and_space_rules_hold_for_test;
#[cfg(axtest)]
pub(crate) use self::io::net_io_constants_hold_for_test;
#[cfg(axtest)]
pub(crate) use self::opt::net_opt_normalization_rules_hold_for_test;
#[cfg(axtest)]
pub(crate) use self::socket::net_socket_constants_hold_for_test;
pub use self::{cmsg::*, io::*, name::*, opt::*, socket::*};