Skip to content
Snippets Groups Projects
Commit 344b56bc authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

Merge pull request #3167 from haukepetersen/fix_native_stacksizes

cpu/native: adjusted stacksizes
parents 8bb6f315 08c4732f
Branches
No related tags found
No related merge requests found
...@@ -30,8 +30,8 @@ extern "C" { ...@@ -30,8 +30,8 @@ extern "C" {
#ifdef __MACH__ /* OSX */ #ifdef __MACH__ /* OSX */
#define THREAD_STACKSIZE_DEFAULT (163840) #define THREAD_STACKSIZE_DEFAULT (163840)
#define THREAD_STACKSIZE_IDLE (163840) #define THREAD_STACKSIZE_IDLE (163840)
#define THREAD_EXTRA_STACKSIZE_PRINTF (163840) #define THREAD_EXTRA_STACKSIZE_PRINTF (81920)
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (163840) #define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (81920)
/* for core/include/thread.h */ /* for core/include/thread.h */
#define THREAD_STACKSIZE_MINIMUM (163840) #define THREAD_STACKSIZE_MINIMUM (163840)
/* native internal */ /* native internal */
...@@ -41,8 +41,8 @@ extern "C" { ...@@ -41,8 +41,8 @@ extern "C" {
#else /* Linux etc. */ #else /* Linux etc. */
#define THREAD_STACKSIZE_DEFAULT (8192) #define THREAD_STACKSIZE_DEFAULT (8192)
#define THREAD_STACKSIZE_IDLE (8192) #define THREAD_STACKSIZE_IDLE (8192)
#define THREAD_EXTRA_STACKSIZE_PRINTF (8192) #define THREAD_EXTRA_STACKSIZE_PRINTF (4096)
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (8192) #define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (4096)
/* for core/include/thread.h */ /* for core/include/thread.h */
#define THREAD_STACKSIZE_MINIMUM (8192) #define THREAD_STACKSIZE_MINIMUM (8192)
/* native internal */ /* native internal */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment