summaryrefslogtreecommitdiff
path: root/test/timer_jump.tasklist
diff options
context:
space:
mode:
Diffstat (limited to 'test/timer_jump.tasklist')
-rw-r--r--test/timer_jump.tasklist19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/timer_jump.tasklist b/test/timer_jump.tasklist
new file mode 100644
index 0000000000..652e8fb6bd
--- /dev/null
+++ b/test/timer_jump.tasklist
@@ -0,0 +1,19 @@
+/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/**
+ * List of enabled tasks in the priority order
+ *
+ * The first one has the lowest priority.
+ *
+ * For each task, use the macro TASK(n, r, d) 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
+ */
+#define CONFIG_TASK_LIST \
+ TASK(WATCHDOG, watchdog_task, NULL) \
+ TASK(CONSOLE, console_task, NULL) \
+ TASK(HOSTCMD, host_command_task, NULL)