aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-03 20:10:10 -0800
committerChristian Cunningham <cc@localhost>2022-01-03 20:10:10 -0800
commit1b180d2f15e9b726e6e9dde5601f41fa48c1c044 (patch)
tree837de56031b3c26b62e8773d2bc671b38da12e53 /linker.ld
parent3448a072fab683b97c93922b2d150e530a22b5a3 (diff)
Ensured Aligned Mutexes
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld2
1 files changed, 2 insertions, 0 deletions
diff --git a/linker.ld b/linker.ld
index df0eb95..33666f2 100644
--- a/linker.ld
+++ b/linker.ld
@@ -18,6 +18,8 @@ SECTIONS
.data :
{
*(.data*)
+ __stacks_start = .;
+ KEEP(*(.data.stacks))
}
. = ALIGN(4096); /* align to page size */
__data_end = .;