aboutsummaryrefslogtreecommitdiffstats
path: root/demos/ARM7-LPC214x-GCC/main.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-04 09:50:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-04 09:50:46 +0000
commite5bd63772994b9b9aa448c43870acf3580efaab7 (patch)
treec9915761bc280883b5dd1ff265ddbbac336aef7d /demos/ARM7-LPC214x-GCC/main.c
parent0b7254491c8d987d2d43b55b7699ba8ce7b42307 (diff)
downloadChibiOS-e5bd63772994b9b9aa448c43870acf3580efaab7.tar.gz
ChibiOS-e5bd63772994b9b9aa448c43870acf3580efaab7.tar.bz2
ChibiOS-e5bd63772994b9b9aa448c43870acf3580efaab7.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@332 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-GCC/main.c')
-rw-r--r--demos/ARM7-LPC214x-GCC/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/ARM7-LPC214x-GCC/main.c b/demos/ARM7-LPC214x-GCC/main.c
index 10cae19da..d83a386d5 100644
--- a/demos/ARM7-LPC214x-GCC/main.c
+++ b/demos/ARM7-LPC214x-GCC/main.c
@@ -131,8 +131,8 @@ int main(int argc, char **argv) {
* are not started in order to make accurate benchmarks.
*/
if ((IO0PIN & 0x00018000) == 0x00018000) {
- chThdCreate(NORMALPRIO, 0, waThread1, sizeof(waThread1), Thread1, NULL);
- chThdCreate(NORMALPRIO, 0, waThread2, sizeof(waThread2), Thread2, NULL);
+ chThdCreateFast(NORMALPRIO, waThread1, sizeof(waThread1), Thread1);
+ chThdCreateFast(NORMALPRIO, waThread2, sizeof(waThread2), Thread2);
}
/*