summaryrefslogtreecommitdiff
path: root/src/kernel/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r--src/kernel/proc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h
index 80cb4a3..2e7f14d 100644
--- a/src/kernel/proc.h
+++ b/src/kernel/proc.h
@@ -35,7 +35,7 @@ struct process {
union {
int death_msg; // PS_DEAD
struct {
- struct vfs_request req;
+ struct vfs_request *req;
} waits4fs; // PS_WAITS4FS
struct {
char __user *buf;
@@ -43,7 +43,7 @@ struct process {
struct fs_wait_response __user *res;
} awaited_req; // PS_WAITS4REQUEST
struct {
- struct vfs_request req;
+ struct vfs_request *req;
bool (*ready)();
void (*callback)(struct process *);
} waits4irq;