/** The umount2() flag to force unmounting. */ #define MNT_FORCE 1 /** The umount2() flag to lazy unmount. */ #define MNT_DETACH 2 /** The umount2() flag to mark a mount point as expired. */ #define MNT_EXPIRE 4
/** The umount2() flag to not dereference the mount point path if it's a symbolic link. */ #define UMOUNT_NOFOLLOW 8
/** *[mount(2)](https://man7.org/linux/man-pages/man2/mount.2.html) mounts the filesystem `source` at *themountpoint`target`. * *Returns0onsuccess,andreturns-1andsets`errno`onfailure.
*/ int mount(constchar* __BIONIC_COMPLICATED_NULLNESS __source, constchar* _Nonnull __target, constchar* __BIONIC_COMPLICATED_NULLNESS __fs_type, unsignedlong __flags, constvoid* _Nullable __data);
/** *[umount(2)](https://man7.org/linux/man-pages/man2/umount.2.html) unmounts the filesystem at *thegivenmountpoint. * *Returns0onsuccess,andreturns-1andsets`errno`onfailure.
*/ int umount(constchar* _Nonnull __target);
/** *[umount2(2)](https://man7.org/linux/man-pages/man2/umount2.2.html) unmounts the filesystem at *thegivenmountpoint,accordingtothesuppliedflags. * *Returns0onsuccess,andreturns-1andsets`errno`onfailure.
*/ int umount2(constchar* _Nonnull __target, int __flags);
__END_DECLS
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.9 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.