diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-04-29 20:58:49 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-04-29 20:58:49 +0000 |
commit | c91122ed0d7b814a11849de42e65402fc6a749ed (patch) | |
tree | b8716b283c65f61d5086f81f6cd53e3562fdec7c | |
parent | 3e3d2b9e887e7e80590f9898a69908dd304a0baf (diff) |
Formerly io-stubs.c.~4~
-rw-r--r-- | libdiskfs/io-stubs.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libdiskfs/io-stubs.c b/libdiskfs/io-stubs.c index 6db67b04..d5266e30 100644 --- a/libdiskfs/io-stubs.c +++ b/libdiskfs/io-stubs.c @@ -51,6 +51,14 @@ diskfs_S_io_postnotify (struct protid *cred, int start, int end) return cred ? 0 : EOPNOTSUPP; } +/* Implement io_readnotify as described in <hurd/io.defs>. + We don't use this feature. */ +error_t +diskfs_S_io_readnotify (struct protid *cred) +{ + return cred ? 0 : EOPNOTSUPP; +} + /* Implement io_sigio as described in <hurd/io.defs>. We do this (in theory) but async IO is implemented here yet. */ |