summaryrefslogtreecommitdiff
path: root/test/mutex.tasklist
blob: c617fc5387f5c553401afb9b912b35b894c24066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

/**
 * List of enabled tasks in the priority order
 *
 * The first one has the lowest priority.
 */
#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(MTX3C, mutex_random_task, NULL) \
  TASK(MTX3B, mutex_random_task, NULL) \
  TASK(MTX3A, mutex_random_task, NULL) \
  TASK(MTX2, mutex_second_task, NULL) \
  TASK(MTX1, mutex_main_task, NULL)