Function umount2 [src]
Prototype
pub fn umount2(special: [*:0]const u8, flags: u32) usize
Parameters
special: [*:0]const u8
flags: u32
Source
pub fn umount2(special: [*:0]const u8, flags: u32) usize {
return syscall2(.umount2, @intFromPtr(special), flags);
}