asterinas/kernel/libs/aster-util/src/lib.rs

18 lines
299 B
Rust
Raw Normal View History

2024-01-03 03:22:36 +00:00
// SPDX-License-Identifier: MPL-2.0
//! The util of Asterinas.
#![no_std]
#![deny(unsafe_code)]
2023-09-18 03:47:17 +00:00
#![feature(int_roundings)]
2023-04-18 10:09:57 +00:00
extern crate alloc;
pub mod coeff;
2023-05-30 11:09:25 +00:00
pub mod dup;
2025-08-18 07:26:14 +00:00
pub mod mem_obj_slice;
pub mod per_cpu_counter;
pub mod printer;
2023-05-30 11:09:25 +00:00
pub mod safe_ptr;
2023-04-18 10:09:57 +00:00
pub mod slot_vec;
2022-11-23 10:13:40 +00:00
pub mod union_read_ptr;