Skip to content

Commit

Permalink
Auto merge of #2058 - GuillaumeGomez:mac-adds, r=Amanieu
Browse files Browse the repository at this point in the history
Add getmntinfo and getmntinfo functions, MNT_WAIT and MNT_NOWAIT constants
  • Loading branch information
bors committed Feb 7, 2021
2 parents 49776c2 + d51b418 commit b43486f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/unix/bsd/apple/mod.rs
Expand Up @@ -3207,6 +3207,10 @@ pub const TIME_OOP: ::c_int = 3;
pub const TIME_WAIT: ::c_int = 4;
pub const TIME_ERROR: ::c_int = 5;

// <sys/mount.h>
pub const MNT_WAIT: ::c_int = 1;
pub const MNT_NOWAIT: ::c_int = 2;

cfg_if! {
if #[cfg(libc_const_size_of)] {
fn __DARWIN_ALIGN32(p: usize) -> usize {
Expand Down Expand Up @@ -3744,6 +3748,21 @@ extern "C" {

pub fn ntp_adjtime(buf: *mut timex) -> ::c_int;
pub fn ntp_gettime(buf: *mut ntptimeval) -> ::c_int;

#[cfg_attr(
all(target_os = "macos", not(target_arch = "aarch64")),
link_name = "getmntinfo$INODE64"
)]
pub fn getmntinfo(mntbufp: *mut *mut statfs, flags: ::c_int) -> ::c_int;
#[cfg_attr(
all(target_os = "macos", not(target_arch = "aarch64")),
link_name = "getfsstat$INODE64"
)]
pub fn getfsstat(
mntbufp: *mut statfs,
bufsize: ::c_int,
flags: ::c_int,
) -> ::c_int;
}

cfg_if! {
Expand Down

0 comments on commit b43486f

Please sign in to comment.