Commit 7eb9c884 authored by Anas Nashif's avatar Anas Nashif Committed by Anas Nashif
Browse files

samples: philosophers: reduce stack size used



Change-Id: I89a21d16fc14f52226fad0bd92cab030b69c54f0
Signed-off-by: default avatarAnas Nashif <anas.nashif@intel.com>
parent 4b854b00
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@

% TASK NAME        PRIO ENTRY           STACK GROUPS
% ==================================================
  TASK philTask      5 philDemo         1024 [EXE]
  TASK phi1Task0     6 philEntry        1024 [PHI]
  TASK philTask1     6 philEntry        1024 [PHI]
  TASK philTask2     6 philEntry        1024 [PHI]
  TASK philTask3     6 philEntry        1024 [PHI]
  TASK philTask4     6 philEntry        1024 [PHI]
  TASK philTask5     6 philEntry        1024 [PHI]
  TASK philTask      5 philDemo         512 [EXE]
  TASK phi1Task0     6 philEntry        256 [PHI]
  TASK philTask1     6 philEntry        256 [PHI]
  TASK philTask2     6 philEntry        256 [PHI]
  TASK philTask3     6 philEntry        256 [PHI]
  TASK philTask4     6 philEntry        256 [PHI]
  TASK philTask5     6 philEntry        256 [PHI]

% MUTEX NAME
% ================
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@
	"of differing priorities and the %s semaphores and timers."

#ifdef CONFIG_NANOKERNEL
#define STSIZE 1024
#define STSIZE 512

/* externs */