From 76357932d83cf1100cf33e3edc9f5547436034b2 Mon Sep 17 00:00:00 2001 From: Peter Mitsis Date: Wed, 10 Feb 2016 16:21:06 -0500 Subject: arm: Enable support for sys_thread_busy_wait() It is now safe to enable sys_thread_busy_wait() for ARM as an earlier patch has fixed the build system to link against the correct intrinsics library. Change-Id: Ib5ed036d996461b91f372b2b3e8f597a925d3292 Signed-off-by: Peter Mitsis --- samples/nanokernel/test/test_context/src/context.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'samples') diff --git a/samples/nanokernel/test/test_context/src/context.c b/samples/nanokernel/test/test_context/src/context.c index 8f88057e5..3dd4fd9c2 100644 --- a/samples/nanokernel/test/test_context/src/context.c +++ b/samples/nanokernel/test/test_context/src/context.c @@ -611,7 +611,6 @@ struct timeout_order_data timeout_order_data[] = { #define NUM_TIMEOUT_FIBERS ARRAY_SIZE(timeout_order_data) static char __stack timeout_stacks[NUM_TIMEOUT_FIBERS][FIBER_STACKSIZE]; -#ifndef CONFIG_ARM /* a fiber busy waits, then reports through a fifo */ static void test_fiber_busy_wait(int ticks, int unused) { @@ -639,7 +638,6 @@ static void test_fiber_busy_wait(int ticks, int unused) nano_fiber_sem_give(&reply_timeout); } -#endif /* a fiber sleeps and times out, then reports through a fifo */ static void test_fiber_sleep(int timeout, int arg2) @@ -676,12 +674,6 @@ static int test_timeout(void) int ii; struct timeout_order_data *data; -/* - * sys_thread_busy_wait() is currently unsupported for ARM - */ - -#ifndef CONFIG_ARM - /* test sys_thread_busy_wait() */ TC_PRINT("Testing sys_thread_busy_wait()\n"); @@ -697,8 +689,6 @@ static int test_timeout(void) return TC_FAIL; } -#endif /* CONFIG_ARM */ - /* test fiber_sleep() */ TC_PRINT("Testing fiber_sleep()\n"); -- cgit v1.2.3