aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-14 21:28:10 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-14 21:28:10 +0000
commit1e0eee8bc4cda865471b0e9bd3caaf4c690ac068 (patch)
treef1f99f72515eb64f8e33145728d73adc36c0094b
parent392151b00aff940212a39afd5d28f0f8f686f06b (diff)
downloadChibiOS-1e0eee8bc4cda865471b0e9bd3caaf4c690ac068.tar.gz
ChibiOS-1e0eee8bc4cda865471b0e9bd3caaf4c690ac068.tar.bz2
ChibiOS-1e0eee8bc4cda865471b0e9bd3caaf4c690ac068.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@769 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--readme.txt4
-rw-r--r--src/chevents.c2
-rw-r--r--src/chlists.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/readme.txt b/readme.txt
index 9ee439f12..51ddc1db1 100644
--- a/readme.txt
+++ b/readme.txt
@@ -73,9 +73,11 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
*****************************************************************************
*** 1.1.1unstable ***
-- FIX: Fixed a small problem in the chcore.c template file.
+- FIX: Fixed a problem with some event APIs not showing in the documentation
+ (backported in stable branch).
- FIX: Fixed wrong assertions in chThdWait() and chHeapFree() (backported in
stable branch).
+- FIX: Fixed a small problem in the chcore.c template file.
- NEW: Mode flexible debug configuration options, removed the old CH_USE_DEBUG
and CH_USE_TRACE.
diff --git a/src/chevents.c b/src/chevents.c
index c49b90874..01437079e 100644
--- a/src/chevents.c
+++ b/src/chevents.c
@@ -193,7 +193,7 @@ void chEvtDispatch(const evhandler_t handlers[], eventmask_t mask) {
}
}
-#if CH_OPTIMIZE_SPEED || !CH_USE_EVENTS_TIMEOUT || defined(__DOXIGEN__)
+#if CH_OPTIMIZE_SPEED || !CH_USE_EVENTS_TIMEOUT || defined(__DOXYGEN__)
/**
* @brief A pending event among those specified in @p ewmask is selected,
* cleared and its mask returned.
diff --git a/src/chlists.c b/src/chlists.c
index 82526feb2..39bea02cc 100644
--- a/src/chlists.c
+++ b/src/chlists.c
@@ -25,7 +25,7 @@
*/
#include <ch.h>
-#if !CH_OPTIMIZE_SPEED || defined(__DOXIGEN__)
+#if !CH_OPTIMIZE_SPEED || defined(__DOXYGEN__)
/**
* @brief Inserts a thread into a priority ordered queue.
*