summaryrefslogtreecommitdiff
path: root/test/mutex.tasklist
diff options
context:
space:
mode:
Diffstat (limited to 'test/mutex.tasklist')
-rw-r--r--test/mutex.tasklist18
1 files changed, 7 insertions, 11 deletions
diff --git a/test/mutex.tasklist b/test/mutex.tasklist
index df7cb73e56..4233108fc0 100644
--- a/test/mutex.tasklist
+++ b/test/mutex.tasklist
@@ -8,19 +8,15 @@
*
* The first one has the lowest priority.
*
- * For each task, use the macro TASK(n, r, d, s) where :
+ * For each task, use the macro TASK_TEST(n, r, d, s) where :
* '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(HOOKS, hook_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) \
- TASK(MTX3C, mutex_random_task, NULL, TASK_STACK_SIZE) \
- TASK(MTX3B, mutex_random_task, NULL, TASK_STACK_SIZE) \
- TASK(MTX3A, mutex_random_task, NULL, TASK_STACK_SIZE) \
- TASK(MTX2, mutex_second_task, NULL, TASK_STACK_SIZE) \
- TASK(MTX1, mutex_main_task, NULL, TASK_STACK_SIZE)
+#define CONFIG_TEST_TASK_LIST \
+ TASK_TEST(MTX3C, mutex_random_task, NULL, TASK_STACK_SIZE) \
+ TASK_TEST(MTX3B, mutex_random_task, NULL, TASK_STACK_SIZE) \
+ TASK_TEST(MTX3A, mutex_random_task, NULL, TASK_STACK_SIZE) \
+ TASK_TEST(MTX2, mutex_second_task, NULL, TASK_STACK_SIZE) \
+ TASK_TEST(MTX1, mutex_main_task, NULL, TASK_STACK_SIZE)