Skip to content

Commit

Permalink
set stack to at least 1
Browse files Browse the repository at this point in the history
This causes _something_ to happen in the linker where it creates the
segments we expect.
  • Loading branch information
bradjc committed Jul 24, 2023
1 parent 2e30671 commit 67e38c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/tests/bare_bones/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TOCK_USERLAND_BASE_DIR = ../../..
# Which files to compile.
C_SRCS := $(wildcard *.c)

STACK_SIZE = 0
STACK_SIZE = 1
APP_HEAP_SIZE = 0
KERNEL_HEAP_SIZE = 0

Expand Down
2 changes: 1 addition & 1 deletion examples/tests/crash_immediately_syscall/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TOCK_USERLAND_BASE_DIR = ../../..
# Which files to compile.
C_SRCS := $(wildcard *.c)

STACK_SIZE = 0
STACK_SIZE = 1
APP_HEAP_SIZE = 0
KERNEL_HEAP_SIZE = 0

Expand Down

0 comments on commit 67e38c9

Please sign in to comment.