summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hurd/fsys.defs10
1 files changed, 6 insertions, 4 deletions
diff --git a/hurd/fsys.defs b/hurd/fsys.defs
index 5d167369..cf2fcccd 100644
--- a/hurd/fsys.defs
+++ b/hurd/fsys.defs
@@ -25,14 +25,12 @@ subsystem fsys 22000;
FSYS_IMPORTS
#endif
-type reply_port_t = MACH_MSG_TYPE_MAKE_SEND_ONCE | polymorphic
- ctype: mach_port_t;
-
/* Sent by filesystem on its bootstrap port upon startup.
REALNODE is the node this filesystem is the translator for,
with all permissions. */
routine fsys_startup (
bootstrap: mach_port_t;
+ RPT
control_port: mach_port_send_t;
out realnode: mach_port_send_t;
out dotdot_node: mach_port_send_t);
@@ -40,6 +38,7 @@ routine fsys_startup (
/* Filesystem should go away. Bye. */
routine fsys_goaway (
fsys: fsys_t;
+ RPT
flags: int);
/* Return a file to the root of the filesystem.
@@ -50,6 +49,7 @@ routine fsys_goaway (
FS_RETRY_MAGICAL). */
routine fsys_getroot(
fsys: fsys_t;
+ RPT
#ifdef FSYS_GETROOT_UREPLY
ureplyport ureply: mig_reply_port_t;
#endif
@@ -63,6 +63,7 @@ routine fsys_getroot(
/* Get a file given a file handle (see file_getfh). */
routine fsys_getfile (
fsys: fsys_t;
+ RPT
gen_uids: idarray_t;
gen_gids: idarray_t;
filehandle: data_t;
@@ -72,13 +73,14 @@ routine fsys_getfile (
routine fsys_getpriv (
fsys: fsys_t;
+ RPT
out host_priv: mach_port_t;
out device_master: mach_port_t;
out fstask: task_t);
routine fsys_init (
fsys: fsys_t;
- sreplyport reply_port: reply_port_t;
+ sreplyport reply_port: sreply_port_t;
proc_server: mach_port_send_t;
auth_handle: auth_t);