diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-09-08 08:41:30 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-09-08 08:41:30 +0000 |
commit | 90b15428d6eebdebba07bc8c14a990ced8ef2644 (patch) | |
tree | 1167f47ce0f6395e187b9a08218aae5f237ea510 /storeio/io.c | |
parent | cdae183ad19a66122f18e688b5d9e4e12c24ef10 (diff) |
1999-09-07 Thomas Bushnell, BSG <tb@mit.edu>
* io.c (trivfs_S_io_map): Renamed to ...
(trivfs_S_io_map_segment): ... here, and accept parameter `index'.
Diffstat (limited to 'storeio/io.c')
-rw-r--r-- | storeio/io.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/storeio/io.c b/storeio/io.c index f3a6a732..6acaa205 100644 --- a/storeio/io.c +++ b/storeio/io.c @@ -34,11 +34,13 @@ mapping; they will set none of the ports and return an error. Such objects can still be accessed by io_read and io_write. */ error_t -trivfs_S_io_map (struct trivfs_protid *cred, +trivfs_S_io_map_segment (struct trivfs_protid *cred, int index, mach_port_t reply, mach_msg_type_name_t reply_type, memory_object_t *rd_obj, mach_msg_type_name_t *rd_type, memory_object_t *wr_obj, mach_msg_type_name_t *wr_type) { + assert (index == 0); /* XXX */ + if (! cred) return EOPNOTSUPP; else if (! (cred->po->openmodes & (O_READ|O_WRITE))) |