Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/unix/redox/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -645,14 +645,14 @@ pub const SIGPWR: c_int = 30;
pub const SIGSYS: c_int = 31;
pub const NSIG: c_int = 32;

pub const SA_NOCLDSTOP: c_ulong = 0x00000001;
pub const SA_NOCLDWAIT: c_ulong = 0x00000002;
pub const SA_SIGINFO: c_ulong = 0x00000004;
pub const SA_RESTORER: c_ulong = 0x04000000;
pub const SA_ONSTACK: c_ulong = 0x08000000;
pub const SA_RESTART: c_ulong = 0x10000000;
pub const SA_NODEFER: c_ulong = 0x40000000;
pub const SA_RESETHAND: c_ulong = 0x80000000;
pub const SA_NOCLDWAIT: usize = 0x0000_0002;
pub const SA_RESTORER: usize = 0x0000_0004;
pub const SA_SIGINFO: usize = 0x0200_0000;
pub const SA_ONSTACK: usize = 0x0400_0000;
pub const SA_RESTART: usize = 0x0800_0000;
pub const SA_NODEFER: usize = 0x1000_0000;
pub const SA_RESETHAND: usize = 0x2000_0000;
pub const SA_NOCLDSTOP: usize = 0x4000_0000;

// sys/file.h
pub const LOCK_SH: c_int = 1;
Expand Down
Loading