4 : MS_RDONLY 1 ; ! Mount read-only.
5 : MS_NOSUID 2 ; ! Ignore suid and sgid bits.
6 : MS_NODEV 4 ; ! Disallow access to device special files.
7 : MS_NOEXEC 8 ; ! Disallow program execution.
8 : MS_SYNCHRONOUS 16 ; ! Writes are synced at once.
9 : MS_REMOUNT 32 ; ! Alter flags of a mounted FS.
10 : MS_MANDLOCK 64 ; ! Allow mandatory locks on an FS.
11 : S_WRITE 128 ; ! Write on file/directory/symlink.
12 : S_APPEND 256 ; ! Append-only file.
13 : S_IMMUTABLE 512 ; ! Immutable file.
14 : MS_NOATIME 1024 ; ! Do not update access times.
15 : MS_NODIRATIME 2048 ; ! Do not update directory access times.
16 : MS_BIND 4096 ; ! Bind directory at different place.
19 ( char* special_file, char* dir, char* fstype, ulong options, void* data ) ;
21 ! FUNCTION: int umount2 ( char* file, int flags ) ;
23 FUNCTION: int umount ( char* file ) ;