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

/**
 * 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(TMRA, TaskTimer, (void *)1234) \
  TASK(TMRB, TaskTimer, (void *)5678) \
  TASK(TMRC, TaskTimer, (void *)8462) \
  TASK(TMRD, TaskTimer, (void *)3719)