Skip to content
Snippets Groups Projects
Commit 4928bd98 authored by Jeremy Larkin's avatar Jeremy Larkin
Browse files

Add fcntl constants for advisory locking on BSDs

For range-based locking POSIX fcntl locks are needed. This adds the
constants F_RDLCK, F_UNLCK, and F_WRLCK for FreeBSD, NetBSD, OpenBSD,
DragonFlyBSD, and macOS/iOS. Fortunately these values are defined the same across these platforms.
parent 2926a5bb
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,10 @@ pub const O_NDELAY: ::c_int = O_NONBLOCK;
pub const F_GETOWN: ::c_int = 5;
pub const F_SETOWN: ::c_int = 6;
pub const F_RDLCK: ::c_short = 1
pub const F_UNLCK: ::c_short = 2
pub const F_WRLCK: ::c_short = 3
pub const MNT_FORCE: ::c_int = 0x80000;
pub const Q_SYNC: ::c_int = 0x600;
......
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