From a29f40e073a0308bd74f0f9803a4660aa233c3ab Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sat, 12 Mar 2022 16:39:39 -0800 Subject: "Dynamic" Mutex Allocation --- linker.ld | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'linker.ld') 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)) -- cgit v1.2.1