aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdyn.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-07-19 12:22:31 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-07-19 12:22:31 +0000
commit84e044f176cee7c6946b24c36c90f63534b5b369 (patch)
treee8ca42b24b64273a7d1d6aa35f7aae07b1d6d39a /test/testdyn.c
parent4245ba7659ecdaadd47b0cdd61f3255b83f87d4f (diff)
downloadChibiOS-84e044f176cee7c6946b24c36c90f63534b5b369.tar.gz
ChibiOS-84e044f176cee7c6946b24c36c90f63534b5b369.tar.bz2
ChibiOS-84e044f176cee7c6946b24c36c90f63534b5b369.zip
Renamed Thread to thread_t.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@5995 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testdyn.c')
-rw-r--r--test/testdyn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/testdyn.c b/test/testdyn.c
index 8e54c81a1..ebfb00a4b 100644
--- a/test/testdyn.c
+++ b/test/testdyn.c
@@ -188,8 +188,8 @@ ROMCONST struct testcase testdyn2 = {
* coverage.
*/
-static bool_t regfind(Thread *tp) {
- Thread *ftp;
+static bool_t regfind(thread_t *tp) {
+ thread_t *ftp;
bool_t found = FALSE;
ftp = chRegFirstThread();
@@ -206,7 +206,7 @@ static void dyn3_setup(void) {
}
static void dyn3_execute(void) {
- Thread *tp;
+ thread_t *tp;
tprio_t prio = chThdGetPriority();
/* Testing references increase/decrease and final detach.*/