summaryrefslogtreecommitdiff
path: root/firmware/asm/thread.h
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-09-21 16:32:13 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-09-21 16:32:58 -0400
commit6ed8b9091c4abfec82f8c50be85ade79fae4ffb0 (patch)
treea0056ac34cf84fb879fe76055895b301fe284b9a /firmware/asm/thread.h
parentbc56e9a9dc2ecfd5b9020f320a761454e1e9e3ba (diff)
downloadrockbox-6ed8b9091c4abfec82f8c50be85ade79fae4ffb0.tar.gz
rockbox-6ed8b9091c4abfec82f8c50be85ade79fae4ffb0.zip
Misc: Compiling under SDL2 uncovered a few issues unrelated to SDL itself
Change-Id: I625d5dd02d3f70bc6484a8641eafdaf13812f4a7
Diffstat (limited to 'firmware/asm/thread.h')
-rw-r--r--firmware/asm/thread.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/asm/thread.h b/firmware/asm/thread.h
index 5372be73ab..771338b406 100644
--- a/firmware/asm/thread.h
+++ b/firmware/asm/thread.h
@@ -46,7 +46,9 @@ struct regs
46 * give a decent amount of space and hope for the best... 46 * give a decent amount of space and hope for the best...
47 * FIXME: this isn't a great solution. */ 47 * FIXME: this isn't a great solution. */
48 #undef MINSIGSTKSZ 48 #undef MINSIGSTKSZ
49 #define MINSIGSTKSZ 16384 49 #endif
50 #ifndef MINSIGSTKSZ
51 #define MINSIGSTKSZ 16384
50 #endif 52 #endif
51 /* MINSIGSTKSZ for the OS to deliver the signal + 0x3000 for us */ 53 /* MINSIGSTKSZ for the OS to deliver the signal + 0x3000 for us */
52 #define DEFAULT_STACK_SIZE (MINSIGSTKSZ+0x3000) /* Bytes */ 54 #define DEFAULT_STACK_SIZE (MINSIGSTKSZ+0x3000) /* Bytes */