xref: /DragonOS/kernel/src/libs/rand.rs (revision d8e29bffeee4fe4fe76ead3c761dd03f5395e6c2)
1 bitflags! {
2     pub struct GRandFlags: u8{
3         const GRND_NONBLOCK = 0x0001;
4         const GRND_RANDOM = 0x0002;
5         const GRND_INSECURE = 0x0004;
6     }
7 }
8