Skip to content
Snippets Groups Projects
Commit 4f3ec99b authored by bors's avatar bors
Browse files

Auto merge of #485 - dhduvall:solaris-flock, r=alexcrichton

Add Solaris constants for fcntl-style advisory locking

Solaris doesn't implement flock(), so any Rust implementation of flock()
will need to implement it using fcntl(), using the F_RDLCK, F_WRLCK, and
F_UNLCK constants.
parents 7d57bdcd 14eaaf8d
No related branches found
No related tags found
No related merge requests found
......@@ -812,6 +812,10 @@ pub const LOCK_EX: ::c_int = 2;
pub const LOCK_NB: ::c_int = 4;
pub const LOCK_UN: ::c_int = 8;
pub const F_RDLCK: ::c_short = 1;
pub const F_WRLCK: ::c_short = 2;
pub const F_UNLCK: ::c_short = 3;
pub const O_SYNC: ::c_int = 16;
pub const O_NONBLOCK: ::c_int = 128;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment