Auto merge of #2058 - GuillaumeGomez:mac-adds, r=Amanieu

Add getmntinfo and getmntinfo functions, MNT_WAIT and MNT_NOWAIT constants
This commit is contained in:
bors 2021-02-07 21:58:28 +00:00
commit b43486f4ff
1 changed files with 19 additions and 0 deletions

View File

@ -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 {
@ -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! {