aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-11-29 11:15:08 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-11-29 11:15:08 +0000
commit994fc74888092de07dd5aa166e7e45f8ae5da035 (patch)
tree4816f28cea95fe800185a1dcf1aedaa919dd0f17 /demos
parentb3e92dc72078603137a7182759419e2b801755b9 (diff)
downloadChibiOS-994fc74888092de07dd5aa166e7e45f8ae5da035.tar.gz
ChibiOS-994fc74888092de07dd5aa166e7e45f8ae5da035.tar.bz2
ChibiOS-994fc74888092de07dd5aa166e7e45f8ae5da035.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@522 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r--demos/ARM7-AT91SAM7X-WEB-GCC/main.c4
-rw-r--r--demos/ARM7-LPC214x-GCC-minimal/main.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/demos/ARM7-AT91SAM7X-WEB-GCC/main.c b/demos/ARM7-AT91SAM7X-WEB-GCC/main.c
index a3da190d7..07af9b0bd 100644
--- a/demos/ARM7-AT91SAM7X-WEB-GCC/main.c
+++ b/demos/ARM7-AT91SAM7X-WEB-GCC/main.c
@@ -26,8 +26,8 @@
#include "web/webthread.h"
-static WorkingArea(waWebThread, 512);
-static WorkingArea(waThread1, 64);
+static WORKING_AREA(waWebThread, 512);
+static WORKING_AREA(waThread1, 64);
static msg_t Thread1(void *arg) {
diff --git a/demos/ARM7-LPC214x-GCC-minimal/main.c b/demos/ARM7-LPC214x-GCC-minimal/main.c
index 134d74f5d..b80264ed7 100644
--- a/demos/ARM7-LPC214x-GCC-minimal/main.c
+++ b/demos/ARM7-LPC214x-GCC-minimal/main.c
@@ -24,7 +24,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) {
@@ -43,7 +43,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) {