git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@422 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2008-09-03 12:43:02 +00:00
parent 071e9457b0
commit a054e9599d
3 changed files with 3 additions and 9 deletions

View File

@ -240,12 +240,10 @@ PREDEFINED = __JUST_STUBS__ \
__DOXIGEN__ \ __DOXIGEN__ \
CH_USE_VIRTUAL_TIMERS \ CH_USE_VIRTUAL_TIMERS \
CH_USE_SYSTEMTIME \ CH_USE_SYSTEMTIME \
CH_USE_SLEEP \
CH_USE_RESUME \
CH_USE_SUSPEND \
CH_USE_TERMINATE \
CH_USE_WAITEXIT \ CH_USE_WAITEXIT \
CH_USE_SEMAPHORES \ CH_USE_SEMAPHORES \
CH_USE_SEMSW \
CH_USE_SEMAPHORES_TIMEOUT \
CH_USE_MUTEXES \ CH_USE_MUTEXES \
CH_USE_EVENTS \ CH_USE_EVENTS \
CH_USE_EVENTS_TIMEOUT \ CH_USE_EVENTS_TIMEOUT \
@ -260,7 +258,6 @@ PREDEFINED = __JUST_STUBS__ \
CH_USE_MESSAGES \ CH_USE_MESSAGES \
CH_USE_MESSAGES_EVENT \ CH_USE_MESSAGES_EVENT \
CH_USE_MESSAGES_PRIORITY \ CH_USE_MESSAGES_PRIORITY \
CH_USE_SEMSW \
CH_USE_DEBUG \ CH_USE_DEBUG \
CH_USE_TRACE CH_USE_TRACE
EXPAND_AS_DEFINED = EXPAND_AS_DEFINED =

View File

@ -90,6 +90,7 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
to use the allocators in order to use dynamic system objects. to use the allocators in order to use dynamic system objects.
Both the allocators can be disabled and removed from the memory image. Both the allocators can be disabled and removed from the memory image.
- FIX: Corrected the wrong definition of the chThdResumeI() macro. - FIX: Corrected the wrong definition of the chThdResumeI() macro.
- FIX: The API chSemWaitTimeout() was missing in the documentation.
- CHANGE: Now the chThdResume() asserts that the thread is in PRSUSPEND state - CHANGE: Now the chThdResume() asserts that the thread is in PRSUSPEND state
rather than test it. rather than test it.
- CHANGE: Removed the CH_USE_TERMINATE, CH_USE_SLEEP, CH_USE_SUSPEND and - CHANGE: Removed the CH_USE_TERMINATE, CH_USE_SLEEP, CH_USE_SUSPEND and

View File

@ -67,10 +67,6 @@ struct Thread {
/** Mutex where the thread is waiting on (only in \p PRWTMTX state). */ /** Mutex where the thread is waiting on (only in \p PRWTMTX state). */
Mutex *p_wtmtxp; Mutex *p_wtmtxp;
#endif #endif
#ifdef CH_USE_CONDVARS
/** CondVar where the thread is waiting on (only in \p PRWTCOND state). */
CondVar *p_wtcondp;
#endif
#ifdef CH_USE_MESSAGES #ifdef CH_USE_MESSAGES
/** Destination thread for message send (only in \p PRSNDMSG state). */ /** Destination thread for message send (only in \p PRSNDMSG state). */
Thread *p_wtthdp; Thread *p_wtthdp;