diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-09-08 08:41:48 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-09-08 08:41:48 +0000 |
commit | acaedfea96345110b420a9ad66accef684fe45c4 (patch) | |
tree | bdcc77e604484393f552b06b2815ca1ccf920d64 | |
parent | d0b0007290e8dc5dccd6ff7a0fb3640937e4ce63 (diff) |
1999-09-07 Thomas Bushnell, BSG <tb@mit.edu>
* null.c (trivfs_S_io_map): Renamed to ...
(trivfs_S_io_map_segment): ... here, with new parameter `index'.
* new-fifo.c (trivfs_S_io_map): Renamed to ...
(trivfs_S_io_map_segment): ... here, with new parameter `index'.
* fifo.c (trivfs_S_io_map): Renamed to ...
(trivfs_S_io_map_segment): ... here, with new parameter `index'.
-rw-r--r-- | trans/ChangeLog | 9 | ||||
-rw-r--r-- | trans/fifo.c | 13 | ||||
-rw-r--r-- | trans/new-fifo.c | 13 | ||||
-rw-r--r-- | trans/null.c | 11 |
4 files changed, 29 insertions, 17 deletions
diff --git a/trans/ChangeLog b/trans/ChangeLog index db46e44a..e719385a 100644 --- a/trans/ChangeLog +++ b/trans/ChangeLog @@ -1,3 +1,12 @@ +1999-09-07 Thomas Bushnell, BSG <tb@mit.edu> + + * null.c (trivfs_S_io_map): Renamed to ... + (trivfs_S_io_map_segment): ... here, with new parameter `index'. + * new-fifo.c (trivfs_S_io_map): Renamed to ... + (trivfs_S_io_map_segment): ... here, with new parameter `index'. + * fifo.c (trivfs_S_io_map): Renamed to ... + (trivfs_S_io_map_segment): ... here, with new parameter `index'. + 1999-08-31 Marcus Brinkmann <Marcus.Brinkmann@ruhr-uni-bochum.de> * crash.c (trivfs_modify_stat): Remove redundant fstype setting. diff --git a/trans/fifo.c b/trans/fifo.c index 3b62cc21..61046510 100644 --- a/trans/fifo.c +++ b/trans/fifo.c @@ -1,6 +1,6 @@ /* A translator for fifos - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -317,11 +317,12 @@ trivfs_goaway (struct trivfs_control *cntl, int flags) 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, - memory_object_t *rdobj, - mach_msg_type_name_t *rdtype, - memory_object_t *wrobj, - mach_msg_type_name_t *wrtype) +trivfs_S_io_map_segment(struct trivfs_protid *cred, + int index, + memory_object_t *rdobj, + mach_msg_type_name_t *rdtype, + memory_object_t *wrobj, + mach_msg_type_name_t *wrtype) { return EINVAL; } diff --git a/trans/new-fifo.c b/trans/new-fifo.c index 203a7d4d..5afefa49 100644 --- a/trans/new-fifo.c +++ b/trans/new-fifo.c @@ -1,6 +1,6 @@ /* A translator for fifos - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -499,11 +499,12 @@ trivfs_goaway (struct trivfs_control *fsys, int flags) 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, - memory_object_t *rdobj, - mach_msg_type_name_t *rdtype, - memory_object_t *wrobj, - mach_msg_type_name_t *wrtype) +trivfs_S_io_map_segment(struct trivfs_protid *cred, + int index, + memory_object_t *rdobj, + mach_msg_type_name_t *rdtype, + memory_object_t *wrobj, + mach_msg_type_name_t *wrtype) { return EINVAL; } diff --git a/trans/null.c b/trans/null.c index 2729a639..b0924dbf 100644 --- a/trans/null.c +++ b/trans/null.c @@ -99,11 +99,12 @@ trivfs_goaway (struct trivfs_control *fsys, int flags) mapping; they will set none of the ports and return an error. Such objects can still be accessed by io_read and io_write. */ kern_return_t -trivfs_S_io_map(struct trivfs_protid *cred, - memory_object_t *rdobj, - mach_msg_type_name_t *rdtype, - memory_object_t *wrobj, - mach_msg_type_name_t *wrtype) +trivfs_S_io_map_segment(struct trivfs_protid *cred, + int index, + memory_object_t *rdobj, + mach_msg_type_name_t *rdtype, + memory_object_t *wrobj, + mach_msg_type_name_t *wrtype) { return EINVAL; /* XXX should work! */ } |