mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-14 12:06:48 +00:00
* 初步实现clone系统调用 * 实现了线程,初步实现futex机制,添加了几个小的系统调用 * 更改pcb引用计数问题 * 解决死锁bug --------- Co-authored-by: LoGin <longjin@DragonOS.org>
8 lines
163 B
Rust
8 lines
163 B
Rust
bitflags! {
|
|
pub struct GRandFlags: u8{
|
|
const GRND_NONBLOCK = 0x0001;
|
|
const GRND_RANDOM = 0x0002;
|
|
const GRND_INSECURE = 0x0004;
|
|
}
|
|
}
|