MNTTAB(4) DOMAIN/IX Reference Manual (SYS5) MNTTAB(4)
NAME
mnttab - mounted file system table
USAGE
#include <mnttab.h>
DESCRIPTION
The mnttab file resides in the /etc directory as a link to
`node_data/etc.mnttab. The file contains a table of dev-
ices, mounted by the mount (1M) command, in the following
structure as defined by <mnttab.h>:
struct mnttab {
char mt_dev[32];
char mt_filsys[32];
short mt_ro_flg;
time_t mt_time;
};
Each entry is 70 bytes long. The first 32 bytes represent
the null-padded name of the place where the special file is
mounted. The next 32 bytes represent the null-padded root
name of the mounted special file. The remaining 6 bytes con-
tain the mounted special file's read/write permissions, as
well as the date on which the file was mounted.
RELATED INFORMATION
mount(1M)
setmnt(1M)
Printed 1/27/86 MNTTAB-1