diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-05-24 22:00:44 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-05-24 22:00:44 +0000 |
commit | 3b2f1f531ed89722215e47adcfd19873daafd587 (patch) | |
tree | 8344f6ac2de847ebab9d3a5c3a3ecb2d269a42bc /libtrivfs/io-stubs.c | |
parent | 072eb06d2f81d83e1a240c1256fe4bc5e95881cc (diff) |
Formerly io-stubs.c.~3~
Diffstat (limited to 'libtrivfs/io-stubs.c')
-rw-r--r-- | libtrivfs/io-stubs.c | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/libtrivfs/io-stubs.c b/libtrivfs/io-stubs.c index 423ef293..7cef6fa8 100644 --- a/libtrivfs/io-stubs.c +++ b/libtrivfs/io-stubs.c @@ -20,52 +20,56 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Written by Michael I. Bushnell. */ #include "priv.h" +#include "io_S.h" -error_t -trivfs_S_io_map_cntl (struct protid *cred, - mach_port_t *obj) +kern_return_t +trivfs_S_io_map_cntl (struct trivfs_protid *cred, + mach_port_t *obj, + mach_msg_type_name_t *objtype) { return EOPNOTSUPP; } -error_t -trivfs_S_io_get_conch (struct protid *cred) +kern_return_t +trivfs_S_io_get_conch (struct trivfs_protid *cred) { return EOPNOTSUPP; } -error_t -trivfs_S_io_release_conch (struct protid *cred) +kern_return_t +trivfs_S_io_release_conch (struct trivfs_protid *cred) { return EOPNOTSUPP; } -error_t -trivfs_S_io_eofnotify (struct protid *) +kern_return_t +trivfs_S_io_eofnotify (struct trivfs_protid *cred) { return EOPNOTSUPP; } -error_t -trivfs_S_io_prenotify (struct protid *, int start, int end) +kern_return_t +trivfs_S_io_prenotify (struct trivfs_protid *cred, vm_offset_t start, + vm_offset_t end) { return EOPNOTSUPP; } -error_t -trivfs_S_io_postnotify (struct protid *, int start, int end) +kern_return_t +trivfs_S_io_postnotify (struct trivfs_protid *cred, vm_offset_t start, + vm_offset_t end) { return EOPNOTSUPP; } -error_t -trivfs_S_io_readsleep (struct protid *) +kern_return_t +trivfs_S_io_readsleep (struct trivfs_protid *cred) { return EOPNOTSUPP; } -error_t -trivfs_S_io_sigio (struct protid *) +kern_return_t +trivfs_S_io_sigio (struct trivfs_protid *cred) { return EOPNOTSUPP; } |