VM: full munmap
[minix.git] / lib / libsffs / type.h
blobc5ad74e9bfb523c17f7f3c72539dbfa9b0a39b97
1 #ifndef _SFFS_TYPE_H
2 #define _SFFS_TYPE_H
4 /* Structure with global file system state. */
5 struct state {
6 int s_mounted; /* is the file system mounted? */
7 int s_signaled; /* have we received a SIGTERM? */
8 int s_read_only; /* is the file system mounted read-only? note,
9 * has no relation to the shared folder mode */
10 dev_t s_dev; /* device the file system is mounted on */
13 #endif /* _SFFS_TYPE_H */