diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-09 00:10:55 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-09 00:10:55 +0000 |
commit | 4a5895c4eba98f9c5e698d48f58cbf3682ed0db1 (patch) | |
tree | 831e31e7ca8910d560f529b093feac29a07e1e24 /py/mpconfig.h | |
parent | 85e8e2ed5b1954b042b2157a27c6f06090cd0511 (diff) | |
download | micropython-4a5895c4eba98f9c5e698d48f58cbf3682ed0db1.tar.gz micropython-4a5895c4eba98f9c5e698d48f58cbf3682ed0db1.zip |
py: Disable stack checking by default; enable on most ports.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 491fa5ea5d..57f54a590e 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -205,7 +205,7 @@ // Whether to check C stack usage. C stack used for calling Python functions, // etc. Not checking means segfault on overflow. #ifndef MICROPY_STACK_CHECK -#define MICROPY_STACK_CHECK (1) +#define MICROPY_STACK_CHECK (0) #endif // Whether to have an emergency exception buffer |