From d7443aaab6d740ef3175530c45c49f2a49b9c9d5 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 2 Jul 2008 14:01:18 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@329 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/chthreads.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/chthreads.c b/src/chthreads.c index 797591243..33c75dd45 100644 --- a/src/chthreads.c +++ b/src/chthreads.c @@ -33,7 +33,6 @@ void init_thread(tprio_t prio, tmode_t mode, Thread *tp) { tp->p_tid = nextid++; tp->p_flags = mode; tp->p_prio = prio; - tp->p_rdymsg = RDY_OK; #ifdef CH_USE_MUTEXES tp->p_mtxlist = NULL; tp->p_realprio = prio; @@ -48,7 +47,7 @@ void init_thread(tprio_t prio, tmode_t mode, Thread *tp) { tp->p_epending = 0; #endif #ifdef CH_USE_EXIT_EVENT - chEvtInit(&tp->p_exitesource); + chEvtInit(&tp->p_exitesource); #endif } -- cgit v1.2.3