diff options
author | Anton Kling <anton@kling.gg> | 2023-10-24 14:07:07 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-24 14:07:07 +0200 |
commit | e93a49d1eadf4a4b36369e67f112f8c45a0d567e (patch) | |
tree | 27055b86bff1a6da42e32fa38000c60b7a9c6370 | |
parent | 3ae251a204748a2f1c4c2af6c55e73d5e5159d0f (diff) |
Scheduler/MMU: Include length variable in structure that did not get included in previous commit
-rw-r--r-- | sched/scheduler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sched/scheduler.h b/sched/scheduler.h index 7ff0734..7df7c40 100644 --- a/sched/scheduler.h +++ b/sched/scheduler.h @@ -23,6 +23,7 @@ int msync(void *addr, size_t length, int flags); typedef struct { void *u_address; void *k_address; + uint32_t length; int fd; } MemoryMap; |