#sccs "@(#)uts/kern/sys:mount.h 1.1" /* Convergent Technologies - System V - May 1983 */ #ifndef mount_h #define mount_h #include #include /* * Mount structure. * One allocated on every mount. */ struct mount { int m_flags; /* status */ dev_t m_dev; /* device mounted */ struct inode *m_inodp; /* pointer to mounted on inode */ struct buf *m_bufp; /* buffer for super block */ struct inode *m_mount; /* pointer to mount root inode */ }; #define MFREE 0 #define MINUSE 1 #define MINTER 2 extern struct mount mount[]; #endif