mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 10:45:22 +00:00
There is no host command yet and the "hello" test is not using it. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BUG=None TEST=make tests BOARD=discovery && make tests BOARD=link Change-Id: Ib7f49f8e38270a8c537e352396b1966abc801511
19 lines
568 B
Plaintext
19 lines
568 B
Plaintext
/* Copyright (c) 2011 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)
|