Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
344b56bc
Commit
344b56bc
authored
9 years ago
by
Kaspar Schleiser
Browse files
Options
Downloads
Plain Diff
Merge pull request #3167 from haukepetersen/fix_native_stacksizes
cpu/native: adjusted stacksizes
parents
8bb6f315
08c4732f
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cpu/native/include/cpu_conf.h
+4
-4
4 additions, 4 deletions
cpu/native/include/cpu_conf.h
with
4 additions
and
4 deletions
cpu/native/include/cpu_conf.h
+
4
−
4
View file @
344b56bc
...
@@ -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 (
16384
0)
#define THREAD_EXTRA_STACKSIZE_PRINTF (
8192
0)
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (
16384
0)
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (
8192
0)
/* 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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment