Files
OpenCellular/test/mutex.tasklist
Vincent Palatin 47c740e0b2 mutex: add unit testing
Exercise all basic use cases on mutexes.

Signed-off-by: Vincent Palatin <vpalatin@chromium.org>

BUG=None
TEST=make qemu-tests

Change-Id: I40de3ae59862db96b40a067c9ad54a978f5646b8
2012-01-25 18:23:48 +00:00

15 lines
405 B
Plaintext

/**
* 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(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)