aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/ARM7-AT91SAM7X-GCC/main.c2
-rw-r--r--demos/ARM7-LPC214x-GCC/main.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/demos/ARM7-AT91SAM7X-GCC/main.c b/demos/ARM7-AT91SAM7X-GCC/main.c
index 1d60db848..c51c911c9 100644
--- a/demos/ARM7-AT91SAM7X-GCC/main.c
+++ b/demos/ARM7-AT91SAM7X-GCC/main.c
@@ -23,7 +23,7 @@
#include "board.h"
#include <sam7x_serial.h>
-static WorkingArea(waThread1, 64);
+static WORKING_AREA(waThread1, 64);
static msg_t Thread1(void *arg) {
while (TRUE) {
diff --git a/demos/ARM7-LPC214x-GCC/main.c b/demos/ARM7-LPC214x-GCC/main.c
index 90dece112..96b117f8a 100644
--- a/demos/ARM7-LPC214x-GCC/main.c
+++ b/demos/ARM7-LPC214x-GCC/main.c
@@ -29,7 +29,7 @@
/*
* Red LEDs blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread1, 64);
+static WORKING_AREA(waThread1, 64);
static msg_t Thread1(void *arg) {
while (TRUE) {
@@ -48,7 +48,7 @@ static msg_t Thread1(void *arg) {
/*
* Yellow LED blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread2, 64);
+static WORKING_AREA(waThread2, 64);
static msg_t Thread2(void *arg) {
while (TRUE) {
@@ -60,7 +60,7 @@ static msg_t Thread2(void *arg) {
return 0;
}
-static WorkingArea(waTestThread, 128);
+static WORKING_AREA(waTestThread, 128);
/*
* Executed as event handler at 500mS intervals.