diff options
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test.c b/test/test.c index 33a971e08..cb23de241 100644 --- a/test/test.c +++ b/test/test.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -58,17 +58,17 @@ static char *tokp; /*
* Static working areas, the following areas can be used for threads or
- * used as temporary buffers. + * used as temporary buffers.
*/
union test_buffers test;
/*
- * Pointers to the spawned threads. + * Pointers to the spawned threads.
*/
Thread *threads[MAX_THREADS];
/*
- * Pointers to the working areas. + * Pointers to the working areas.
*/
void * const wa[5] = {test.waT0, test.waT1, test.waT2, test.waT3, test.waT4};
|