diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-27 15:14:17 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-27 15:14:17 +0000 |
commit | 3310d5e315b0b789a1323b719cebee675b4bfe6b (patch) | |
tree | b8a80255dca1c1623e3065d17587f277ba5eee89 /libtrivfs/trivfs.h | |
parent | 4193720d942c29b6d2d07ac8ea0a51e76d02b003 (diff) |
(trivfs_startup): New parms CONTROL_BUCKET and PROTID_BUCKET.
Diffstat (limited to 'libtrivfs/trivfs.h')
-rw-r--r-- | libtrivfs/trivfs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libtrivfs/trivfs.h b/libtrivfs/trivfs.h index d09e70f6..51ba0519 100644 --- a/libtrivfs/trivfs.h +++ b/libtrivfs/trivfs.h @@ -105,7 +105,9 @@ void (*trivfs_peropen_destroy_hook) (struct trivfs_peropen *); any error occurs sending fsys_startup, it is returned, otherwise 0. */ error_t trivfs_startup(mach_port_t bootstrap, struct port_class *control_class, + struct port_bucket *control_bucket, struct port_class *protid_class, + struct port_bucket *protid_bucket, struct trivfs_control **control); /* Call this to create a new control port and return a receive right @@ -116,7 +118,7 @@ error_t trivfs_startup(mach_port_t bootstrap, to be used for the control port for this node. */ mach_port_t trivfs_handle_port (mach_port_t underlying, struct port_class *control_class, - struct port_bucket *control_bucket + struct port_bucket *control_bucket, struct port_class *protid_class, struct port_bucket *protid_bucket); |