Skip to content

Commit

Permalink
Auto merge of #3251 - devnexen:redox_lockf_flags, r=JohnTitor
Browse files Browse the repository at this point in the history
redox adding lockf flags
  • Loading branch information
bors committed May 23, 2023
2 parents 72d9121 + 5a2297e commit 48d4aec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/unix/redox/mod.rs
Expand Up @@ -278,6 +278,10 @@ pub const PATH_MAX: ::c_int = 4096;
pub const F_GETLK: ::c_int = 5;
pub const F_SETLK: ::c_int = 6;
pub const F_SETLKW: ::c_int = 7;
pub const F_ULOCK: ::c_int = 0;
pub const F_LOCK: ::c_int = 1;
pub const F_TLOCK: ::c_int = 2;
pub const F_TEST: ::c_int = 3;

// FIXME: relibc {
pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void;
Expand Down

0 comments on commit 48d4aec

Please sign in to comment.