summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Nematbakhsh <shawnn@chromium.org>2015-06-01 13:50:52 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-06-02 20:48:52 +0000
commit457d9086f3ae7d1c30e76d193e9a2bc3f6389c50 (patch)
treeffdf5b5d0bed8fcec87a5c65ee4f81aff3da7bff
parent79db6d22a27670f8db06897bc2d44fefab664a84 (diff)
downloadchrome-ec-457d9086f3ae7d1c30e76d193e9a2bc3f6389c50.tar.gz
glados: Use reasonable task stack size defaults
Copy task stack sizes from Samus. These can be tuned later if necessary. BUG=chrome-os-partner:40790,chrome-os-partner:40677 TEST=`make buildall -j` BRANCH=None Change-Id: I862c55ca924879ffb08062eaf1466fd3d4a3090c Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274415 Reviewed-by: Alec Berg <alecaberg@chromium.org>
-rw-r--r--board/glados/ec.tasklist8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/glados/ec.tasklist b/board/glados/ec.tasklist
index cfc0c4f10a..e10cc103eb 100644
--- a/board/glados/ec.tasklist
+++ b/board/glados/ec.tasklist
@@ -17,13 +17,13 @@
* 's' is the stack size in bytes; must be a multiple of 8
*/
#define CONFIG_TASK_LIST \
- TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(CHARGER, charger_task, NULL, TASK_STACK_SIZE) \
- TASK_NOTEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(PDCMD, pd_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(POWERBTN, power_button_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(PD, pd_task, NULL, LARGER_TASK_STACK_SIZE) \