summaryrefslogtreecommitdiff
path: root/src/kernel/vfs/request.h
diff options
context:
space:
mode:
authordzwdz2022-04-09 19:03:29 +0200
committerdzwdz2022-04-09 19:03:29 +0200
commit59ca1c46970fa8df2d0fa4b8163a99ca418bd2cf (patch)
treeb07438ddb940f206a3370bc7524f547661b41c6c /src/kernel/vfs/request.h
parente17137d8d74e65e3cce7c04263d73a111bae25c0 (diff)
kernel/vfs: prevent the vfs functions from switching processes
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);