diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-03-13 21:35:25 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-03-13 21:36:17 +0100 |
commit | b901dab073de26f9052a0c69872c1f3d4f15eea7 (patch) | |
tree | ec61e626e476463034f8331221be109f47a8eb8d | |
parent | b261eb886e4ee068515484727955e416517a03b4 (diff) | |
download | hurd-b901dab073de26f9052a0c69872c1f3d4f15eea7.tar.gz hurd-b901dab073de26f9052a0c69872c1f3d4f15eea7.tar.bz2 hurd-b901dab073de26f9052a0c69872c1f3d4f15eea7.zip |
Document fsys_getpriv and fsys_init RPCs
-rw-r--r-- | hurd/fsys.defs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hurd/fsys.defs b/hurd/fsys.defs index 35d483cf..286da703 100644 --- a/hurd/fsys.defs +++ b/hurd/fsys.defs @@ -95,8 +95,10 @@ routine fsys_set_options ( options: data_t; do_children: int); -/* The following two calls are only implemented by bootstrap filesystems. */ +/* The following two calls are only implemented by bootstrap filesystems. */ +/* This is called by bootstrap translators to get the privileged host and device + master ports from the bootstrap filesystem. */ routine fsys_getpriv ( fsys: fsys_t; RPT @@ -104,6 +106,8 @@ routine fsys_getpriv ( out device_master: mach_port_send_t; out fstask: mach_port_send_t); +/* This is called by the startup translator to provide the bootstrap filesystem + with proc and auth ports. */ routine fsys_init ( fsys: fsys_t; sreplyport reply_port: sreply_port_t; |