summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libdiskfs/io-stubs.c8
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. */