aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-12 16:39:39 -0800
committerChristian Cunningham <cc@localhost>2022-03-12 16:39:39 -0800
commita29f40e073a0308bd74f0f9803a4660aa233c3ab (patch)
treee607ee7eed39da0e1dcf65c4eb76dd1426899f85 /linker.ld
parentb62c324bde267a5a940b1d06f44f62a125aef50d (diff)
"Dynamic" Mutex Allocation
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld4
1 files changed, 4 insertions, 0 deletions
diff --git a/linker.ld b/linker.ld
index dcb5a9b..e12ab5c 100644
--- a/linker.ld
+++ b/linker.ld
@@ -38,6 +38,10 @@ SECTIONS
. = ALIGN(4096);
KEEP(*(.bss.threads"))
. = ALIGN(4096);
+ KEEP(*(.bss.mutexl"))
+ . = ALIGN(4096);
+ KEEP(*(.bss.mutexs"))
+ . = ALIGN(4096);
*(.bss)
*(.bss.*)
KEEP(*(.bss.mmheap))