diff options
author | Anton Kling <anton@kling.gg> | 2023-11-10 15:19:49 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-10 15:19:49 +0100 |
commit | 0cb4afef6da5488a128e5aaece435e9aa5f5797e (patch) | |
tree | b77f05fa03878bad5542c31e42f19f4c99034149 /kernel/cpu | |
parent | 8ffef83741948964171ca111fd7c90534515ae87 (diff) |
Kernel/Memory: Fill new allocations with random data.
This should make it easier to spot uninitalized memory being used.
Diffstat (limited to 'kernel/cpu')
-rw-r--r-- | kernel/cpu/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cpu/syscall.c b/kernel/cpu/syscall.c index 6b4f437..8e17ae1 100644 --- a/kernel/cpu/syscall.c +++ b/kernel/cpu/syscall.c @@ -18,10 +18,10 @@ #include <scalls/recvfrom.h> #include <scalls/sendto.h> #include <scalls/shm.h> +#include <scalls/sigaction.h> #include <scalls/socket.h> #include <scalls/stat.h> #include <scalls/uptime.h> -#include <scalls/sigaction.h> #include <stdint.h> #include <string.h> |