event logger: reduce sample application's RAM footprint
The event logger nanokernel sample application spawns application fibers and system fibers. This commit reduce the application's fiber stacks to reduce the global application RAM footprint and allow it to run on smaller platforms like Quark D2000. Jira: ZEP-526 Change-Id: I98f899892e5c5d8ce84f97f6768444cf67277a1a Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@intel.com>
This commit is contained in:
parent
e72a71a53d
commit
a814140b75
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
|||
|
||||
extern void philEntry(void);
|
||||
|
||||
#define STSIZE 1024
|
||||
#define STSIZE 512
|
||||
char __stack kernel_event_logger_stack[2][STSIZE];
|
||||
|
||||
struct context_switch_data_t {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue