From 3368f57424db121a96207e9ee6f5e9f746d34ca6 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 3 Sep 2013 09:51:32 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6251 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/rt/RT-STM32F051-DISCOVERY/main.c | 4 ++-- demos/rt/RT-STM32F303-DISCOVERY/main.c | 4 ++-- demos/rt/RT-STM32F407-DISCOVERY/main.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'demos') diff --git a/demos/rt/RT-STM32F051-DISCOVERY/main.c b/demos/rt/RT-STM32F051-DISCOVERY/main.c index c20ca0429..ea6ed9f39 100644 --- a/demos/rt/RT-STM32F051-DISCOVERY/main.c +++ b/demos/rt/RT-STM32F051-DISCOVERY/main.c @@ -21,7 +21,7 @@ /* * Blue LED blinker thread, times are in milliseconds. */ -static WORKING_AREA(waThread1, 128); +static THD_WORKING_AREA(waThread1, 128); static msg_t Thread1(void *arg) { (void)arg; @@ -37,7 +37,7 @@ static msg_t Thread1(void *arg) { /* * Green LED blinker thread, times are in milliseconds. */ -static WORKING_AREA(waThread2, 128); +static THD_WORKING_AREA(waThread2, 128); static msg_t Thread2(void *arg) { (void)arg; diff --git a/demos/rt/RT-STM32F303-DISCOVERY/main.c b/demos/rt/RT-STM32F303-DISCOVERY/main.c index ed10165af..0b220b6d4 100644 --- a/demos/rt/RT-STM32F303-DISCOVERY/main.c +++ b/demos/rt/RT-STM32F303-DISCOVERY/main.c @@ -56,7 +56,7 @@ static msg_t Thread1(void *arg) { } #endif -static WORKING_AREA(waThread1, 128); +static THD_WORKING_AREA(waThread1, 128); static msg_t Thread1(void *arg) { (void)arg; @@ -69,7 +69,7 @@ static msg_t Thread1(void *arg) { } } -static WORKING_AREA(waThread2, 128); +static THD_WORKING_AREA(waThread2, 128); static msg_t Thread2(void *arg) { (void)arg; diff --git a/demos/rt/RT-STM32F407-DISCOVERY/main.c b/demos/rt/RT-STM32F407-DISCOVERY/main.c index a1a9d1357..be7c848c2 100644 --- a/demos/rt/RT-STM32F407-DISCOVERY/main.c +++ b/demos/rt/RT-STM32F407-DISCOVERY/main.c @@ -22,7 +22,7 @@ * This is a periodic thread that does absolutely nothing except flashing * a LED. */ -static WORKING_AREA(waThread1, 128); +static THD_WORKING_AREA(waThread1, 128); static msg_t Thread1(void *arg) { (void)arg; -- cgit v1.2.3