1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00

Reduce default stack size on AVR32 from 8192 to 4096.

The figure is verified by instrumenting the C stack and parsing a large (50KB)
Lua program, whose high-water-mark is 3948 bytes.
This commit is contained in:
Martin Guy 2011-03-28 06:41:15 +02:00
parent 60eb74f3cd
commit ec73001dca

View File

@ -3,7 +3,7 @@
#ifndef __STACKS_H__
#define __STACKS_H__
#define STACK_SIZE 8192
#define STACK_SIZE 4096
#define STACK_SIZE_TOTAL ( STACK_SIZE )
#endif