hw: reduce stack size of idle threads

ref #1096
This commit is contained in:
Martin Stein 2014-03-14 11:52:38 +01:00 committed by Norman Feske
parent d30edd4841
commit 00708b6696
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class Kernel::Idle_thread : public Thread
private:
enum {
STACK_SIZE = 4 * 1024,
STACK_SIZE = sizeof(addr_t) * 32,
STACK_ALIGNM = Processor_driver::DATA_ACCESS_ALIGNM,
};