Add CLONE_STACK flag

This commit is contained in:
Jeremy Soller
2019-03-31 08:41:43 -06:00
parent 54839d42f4
commit 9eff3aeeef

View File

@@ -4,6 +4,7 @@ pub const CLONE_FILES: usize = 0x400;
pub const CLONE_SIGHAND: usize = 0x800;
pub const CLONE_VFORK: usize = 0x4000;
pub const CLONE_THREAD: usize = 0x10000;
pub const CLONE_STACK: usize = 0x1000_0000;
pub const CLOCK_REALTIME: usize = 1;
pub const CLOCK_MONOTONIC: usize = 4;