diff options
author | Miles Bader <miles@gnu.org> | 1995-05-12 23:22:05 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-05-12 23:22:05 +0000 |
commit | b7c1d7de096cb897e61093eace3aec4524741a0c (patch) | |
tree | e00d785a7ee9edf2de52ca495bc4145dcd8c0ecd /hurd | |
parent | b707c0ee99fa9dc7a01e1ef2e02f33a409b07a03 (diff) |
(fsys_set_options, fsys_mod_readonly): Replace mod_readonly with the more
general set_options interface.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/fsys.defs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/hurd/fsys.defs b/hurd/fsys.defs index 2da29501..85180b37 100644 --- a/hurd/fsys.defs +++ b/hurd/fsys.defs @@ -77,14 +77,13 @@ routine fsys_syncfs ( wait: int; do_children: int); -/* Change the readonly status of the filesystem. FORCE (when changing - from writeable to readonly) means that existing open ports for writing - should be ignored. */ -routine fsys_mod_readonly ( +/* Pass a server-specific options string. This usually includes flags + similar to command line options, e.g., --readonly, or --sync=30. */ +routine fsys_set_options ( fsys: fsys_t; RPT - readonly: int; - force: int); + options: data_t; + do_children: int); /* The following two calls are only implemented by bootstrap filesystems. */ |