decouple file system server start/termination from mount/umount

This commit is contained in:
Dirk Vogt
2010-11-23 19:34:56 +00:00
parent 41ae712b50
commit 9ed280d1ec
21 changed files with 121 additions and 132 deletions

View File

@@ -8,6 +8,7 @@
#define MS_RDONLY 0x001 /* Mount device read only */
#define MS_REUSE 0x002 /* Tell RS to try reusing binary from memory */
#define MS_LABEL16 0x004 /* Mount message points to 16-byte label */
#define MS_EXISTING 0x008 /* Tell mount to use already running server */
/* Function Prototypes. */
@@ -18,5 +19,6 @@
_PROTOTYPE( int mount, (char *_spec, char *_name, int _mountflags,
char *type, char *args) );
_PROTOTYPE( int umount, (const char *_name) );
_PROTOTYPE( int umount2, (const char *_name, int flags) );
#endif /* _MOUNT_H */