summaryrefslogtreecommitdiff
path: root/hurd/fsys.defs
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-05-12 23:22:05 +0000
committerMiles Bader <miles@gnu.org>1995-05-12 23:22:05 +0000
commitb7c1d7de096cb897e61093eace3aec4524741a0c (patch)
treee00d785a7ee9edf2de52ca495bc4145dcd8c0ecd /hurd/fsys.defs
parentb707c0ee99fa9dc7a01e1ef2e02f33a409b07a03 (diff)
(fsys_set_options, fsys_mod_readonly): Replace mod_readonly with the more
general set_options interface.
Diffstat (limited to 'hurd/fsys.defs')
-rw-r--r--hurd/fsys.defs11
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. */