Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apple fcntl update. #3365

Merged
merged 1 commit into from Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions libc-test/semver/apple.txt
Expand Up @@ -447,9 +447,11 @@ F_RDADVISE
F_RDAHEAD
F_RDLCK
F_SETOWN
F_SPECULATIVE_READ
F_TEST
F_THAW_FS
F_TLOCK
F_TRIM_ACTIVE_FILE
F_ULOCK
F_UNLCK
F_VOLPOSMODE
Expand Down Expand Up @@ -1900,9 +1902,11 @@ fremovexattr
fsetattrlist
fsetxattr
fsid_t
fspecread_t
fstatfs
fstore_t
ftok
ftrimactivefile_t
futimes
getattrlist
getattrlistat
Expand Down
14 changes: 14 additions & 0 deletions src/unix/bsd/apple/mod.rs
Expand Up @@ -385,6 +385,18 @@ s! {
pub fp_length: ::off_t, /* IN: size of the region */
}

pub struct ftrimactivefile_t {
pub fta_offset: ::off_t,
pub fta_length: ::off_t,
}

pub struct fspecread_t {
pub fsr_flags: ::c_uint,
pub reserved: ::c_uint,
pub fsr_offset: ::off_t,
pub fsr_length: ::off_t,
}

pub struct radvisory {
pub ra_offset: ::off_t,
pub ra_count: ::c_int,
Expand Down Expand Up @@ -3249,6 +3261,8 @@ pub const F_NODIRECT: ::c_int = 62;
pub const F_LOG2PHYS_EXT: ::c_int = 65;
pub const F_BARRIERFSYNC: ::c_int = 85;
pub const F_PUNCHHOLE: ::c_int = 99;
pub const F_TRIM_ACTIVE_FILE: ::c_int = 100;
pub const F_SPECULATIVE_READ: ::c_int = 101;
pub const F_GETPATH_NOFIRMLINK: ::c_int = 102;

pub const F_ALLOCATECONTIG: ::c_uint = 0x02;
Expand Down