diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-07-05 17:44:40 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-07-05 17:44:40 +0000 |
commit | a72b2f3a06bf9fb6c32cee0ee3cc834109f704d6 (patch) | |
tree | 7791563ee33360b83576ae0de9503eb0b7de51b9 /libtrivfs/io-stubs.c | |
parent | c13b2d281f8d633aeea771abf7443700ed3fae87 (diff) |
entered into RCS
Diffstat (limited to 'libtrivfs/io-stubs.c')
-rw-r--r-- | libtrivfs/io-stubs.c | 36 |
1 files changed, 28 insertions, 8 deletions
diff --git a/libtrivfs/io-stubs.c b/libtrivfs/io-stubs.c index 69d00bec..2c4f7330 100644 --- a/libtrivfs/io-stubs.c +++ b/libtrivfs/io-stubs.c @@ -24,6 +24,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ kern_return_t trivfs_S_io_map_cntl (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype, mach_port_t *obj, mach_msg_type_name_t *objtype) { @@ -31,51 +33,69 @@ trivfs_S_io_map_cntl (struct trivfs_protid *cred, } kern_return_t -trivfs_S_io_get_conch (struct trivfs_protid *cred) +trivfs_S_io_get_conch (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype) { return EOPNOTSUPP; } kern_return_t -trivfs_S_io_release_conch (struct trivfs_protid *cred) +trivfs_S_io_release_conch (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype) { return EOPNOTSUPP; } kern_return_t -trivfs_S_io_eofnotify (struct trivfs_protid *cred) +trivfs_S_io_eofnotify (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype) { return EOPNOTSUPP; } kern_return_t -trivfs_S_io_prenotify (struct trivfs_protid *cred, vm_offset_t start, +trivfs_S_io_prenotify (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype, + vm_offset_t start, vm_offset_t end) { return EOPNOTSUPP; } kern_return_t -trivfs_S_io_postnotify (struct trivfs_protid *cred, vm_offset_t start, +trivfs_S_io_postnotify (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype, + vm_offset_t start, vm_offset_t end) { return EOPNOTSUPP; } kern_return_t -trivfs_S_io_readsleep (struct trivfs_protid *cred) +trivfs_S_io_readsleep (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype) { return EOPNOTSUPP; } kern_return_t -trivfs_S_io_sigio (struct trivfs_protid *cred) +trivfs_S_io_sigio (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype) { return EOPNOTSUPP; } kern_return_t -trivfs_S_io_readnotify (struct trivfs_protid *cred) +trivfs_S_io_readnotify (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype) { return EOPNOTSUPP; } |