From 10994eaa96e92890d945bec77023378fe374a114 Mon Sep 17 00:00:00 2001 From: jD91mZM2 Date: Fri, 10 Jul 2020 12:10:24 +0200 Subject: [PATCH] Add auxiliery vector --- src/flag.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/flag.rs b/src/flag.rs index 195ecb6..3eb11ad 100644 --- a/src/flag.rs +++ b/src/flag.rs @@ -291,6 +291,10 @@ bitflags! { } } +// Auxiliery vector types +pub const AT_NULL: usize = 0; +pub const AT_ENTRY: usize = 9; + bitflags! { pub struct WaitFlags: usize { const WNOHANG = 0x01;