diff options
author | Freya Murphy <freya@freyacat.org> | 2024-02-02 10:10:24 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-02-02 10:13:32 -0500 |
commit | 1d794d87f4307f7b34f5b69d69213343aed9d137 (patch) | |
tree | 50d2508ddc4e6be814d31bfb37a37065e5e71525 /arch/amd64 | |
parent | debugger (diff) | |
download | corn-1d794d87f4307f7b34f5b69d69213343aed9d137.tar.gz corn-1d794d87f4307f7b34f5b69d69213343aed9d137.tar.bz2 corn-1d794d87f4307f7b34f5b69d69213343aed9d137.zip |
looping kalloc can allocate all of memory (sometimes) :3
Diffstat (limited to 'arch/amd64')
-rw-r--r-- | arch/amd64/linker.ld | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/amd64/linker.ld b/arch/amd64/linker.ld index 7a34a9e..797dc35 100644 --- a/arch/amd64/linker.ld +++ b/arch/amd64/linker.ld @@ -31,6 +31,7 @@ SECTIONS { .bss BLOCK(4K) : ALIGN(4K) { + *(COMMON) *(.bss) } |