From 6db8c459a58514b2c49fbe94b9ff73aaf7ccba5f Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 3 Sep 2013 13:35:40 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6256 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/nil/NIL-STM32F051-DISCOVERY/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'demos') diff --git a/demos/nil/NIL-STM32F051-DISCOVERY/main.c b/demos/nil/NIL-STM32F051-DISCOVERY/main.c index f601b10a4..2600550bb 100644 --- a/demos/nil/NIL-STM32F051-DISCOVERY/main.c +++ b/demos/nil/NIL-STM32F051-DISCOVERY/main.c @@ -55,10 +55,10 @@ THD_FUNCTION(Thread2, arg) { * Threads static table, one entry per thread. The number of entries must * match NIL_CFG_NUM_THREADS. */ -NIL_THREADS_TABLE_BEGIN() - NIL_THREADS_TABLE_ENTRY("thread1", Thread1, NULL, waThread1, sizeof(waThread1)) - NIL_THREADS_TABLE_ENTRY("thread2", Thread2, NULL, waThread2, sizeof(waThread2)) -NIL_THREADS_TABLE_END() +THD_TABLE_BEGIN + THD_TABLE_ENTRY("thread1", Thread1, NULL, waThread1, sizeof(waThread1)) + THD_TABLE_ENTRY("thread2", Thread2, NULL, waThread2, sizeof(waThread2)) +THD_TABLE_END /* * Application entry point. -- cgit v1.2.3