xref: /DragonOS/kernel/src/libs/rand.rs (revision 59a6bcf6aee15a11a16431bdf875905c5ecf9157) !
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