summaryrefslogtreecommitdiff
path: root/test/flash_overwrite.tasklist
diff options
context:
space:
mode:
Diffstat (limited to 'test/flash_overwrite.tasklist')
-rw-r--r--test/flash_overwrite.tasklist9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/flash_overwrite.tasklist b/test/flash_overwrite.tasklist
index 65a15ac498..df7abf767b 100644
--- a/test/flash_overwrite.tasklist
+++ b/test/flash_overwrite.tasklist
@@ -12,9 +12,10 @@
* 'n' in the name of the task
* 'r' in the main routine of the task
* 'd' in an opaque parameter passed to the routine at startup
+ * 's' is the stack size in bytes; must be a multiple of 8
*/
#define CONFIG_TASK_LIST \
- TASK(WATCHDOG, watchdog_task, NULL) \
- TASK(VBOOTHASH, vboot_hash_task, NULL) \
- TASK(HOSTCMD, host_command_task, NULL) \
- TASK(CONSOLE, console_task, NULL)
+ TASK(WATCHDOG, watchdog_task, NULL, TASK_STACK_SIZE) \
+ TASK(VBOOTHASH, vboot_hash_task, NULL, TASK_STACK_SIZE) \
+ TASK(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
+ TASK(CONSOLE, console_task, NULL, TASK_STACK_SIZE)