Home | History | Annotate | Download | only in dist

Lines Matching refs:UMOUNT

70 #if !defined(UMOUNT)
71 /// Fake replacement value to the path to umount(8).
72 # define UMOUNT "do-not-use-this-value"
75 # error "umount(8) detected when unmount(2) is also available"
371 /// Unmounts a file system using umount(8).
373 /// \pre umount(2) must not be available; i.e. have_unmount2 must be false.
387 const int ret = execlp(UMOUNT, "umount", mount_point, NULL);
389 err(EXIT_FAILURE, "Failed to execute " UMOUNT);
405 error = kyua_libc_error_new(EFAULT, "umount(8) crashed");