4 releases
Uses new Rust 2024
new 0.1.3 | Apr 30, 2025 |
---|---|
0.1.2 | Apr 29, 2025 |
0.1.1 | May 31, 2024 |
0.1.0 | Feb 19, 2024 |
#5 in #实现
Used in seminix
17KB
374 lines
Unsafe list head 实现
Unsafe list head 的实现是 linux 的 list_head
实现.
这个模块是一个非常底层的接口, 没有并发支持, 没有所有权,
操作的对象都是裸指针, 所有操作均是 unsafe 的.
这个模块的实现只是为了方便实现 page alloc 接口.
unsafe_list
介绍
seminix
组件: unsafe_list
, 基于 linux 的 list 实现.