summaryrefslogtreecommitdiff
path: root/src/kernel/vfs/request.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/vfs/request.h')
-rw-r--r--src/kernel/vfs/request.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/vfs/request.h b/src/kernel/vfs/request.h
index 2bcaae6..37b8c3a 100644
--- a/src/kernel/vfs/request.h
+++ b/src/kernel/vfs/request.h
@@ -40,8 +40,7 @@ struct vfs_request {
struct vfs_backend *backend;
};
-/** Assigns the vfs_request to the caller, and calls the backend. Might not
- * return - can switch processes! TODO no it can't*/
+/** Assigns the vfs_request to the caller, and dispatches the call */
int vfs_request_create(struct vfs_request);
int vfs_request_accept(struct vfs_request *);
int vfs_request_finish(struct vfs_request *, int ret);