diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-09-08 08:41:11 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-09-08 08:41:11 +0000 |
commit | 9cc839e9475638ac3f8cdf9f0ea7e4db1d414835 (patch) | |
tree | 48c488cee7c61a37c02f2bd797fda4d2e2f7d73b /pfinet | |
parent | 5f8ee9037ebdec8cf241ee30f0b8375801a2fed2 (diff) |
1999-09-07 Thomas Bushnell, BSG <tb@mit.edu>
* io-ops.c (S_io_map_segment): New function.
Diffstat (limited to 'pfinet')
-rw-r--r-- | pfinet/ChangeLog | 4 | ||||
-rw-r--r-- | pfinet/io-ops.c | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/pfinet/ChangeLog b/pfinet/ChangeLog index fe684aac..d08e9b32 100644 --- a/pfinet/ChangeLog +++ b/pfinet/ChangeLog @@ -1,3 +1,7 @@ +1999-09-07 Thomas Bushnell, BSG <tb@mit.edu> + + * io-ops.c (S_io_map_segment): New function. + 1999-07-11 Roland McGrath <roland@baalperazim.frob.com> * pfinet.h: Add #include <sys/mman.h> for munmap decl. diff --git a/pfinet/io-ops.c b/pfinet/io-ops.c index b6831c31..1a75b6e3 100644 --- a/pfinet/io-ops.c +++ b/pfinet/io-ops.c @@ -580,6 +580,17 @@ S_io_map (struct sock_user *user, } error_t +S_io_map_segment (struct sock_user *user, + int index, + mach_port_t *rdobj, + mach_msg_type_name_t *rdobj_type, + mach_port_t *wrobj, + mach_msg_type_name_t *wrobj_type) +{ + return EOPNOTSUPP; +} + +error_t S_io_map_cntl (struct sock_user *user, mach_port_t *obj, mach_msg_type_name_t *obj_type) |