aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-07-05 10:03:21 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-07-05 10:03:21 +0000
commit8bd5eb3a68db1570f9043a42a23ef59f184417ab (patch)
treee6ec833022602c5c1aac419bac248bc345bf6187 /os/kernel
parent628ab845682617f217ba2e6700827a793980aee4 (diff)
downloadChibiOS-8bd5eb3a68db1570f9043a42a23ef59f184417ab.tar.gz
ChibiOS-8bd5eb3a68db1570f9043a42a23ef59f184417ab.tar.bz2
ChibiOS-8bd5eb3a68db1570f9043a42a23ef59f184417ab.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5928 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel')
-rw-r--r--os/kernel/include/chevents.h2
-rw-r--r--os/kernel/src/chevents.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/os/kernel/include/chevents.h b/os/kernel/include/chevents.h
index ec5c1cb93..d8bd269ea 100644
--- a/os/kernel/include/chevents.h
+++ b/os/kernel/include/chevents.h
@@ -120,7 +120,7 @@ typedef void (*evhandler_t)(eventid_t);
* @note This function can be invoked before the kernel is initialized
* because it just prepares a @p EventSource structure.
*
- * @param[in] esp pointer to the @p EventSource structure
+ * @param[out] esp pointer to the @p EventSource structure
*
* @init
*/
diff --git a/os/kernel/src/chevents.c b/os/kernel/src/chevents.c
index 1a2285779..51c626bf9 100644
--- a/os/kernel/src/chevents.c
+++ b/os/kernel/src/chevents.c
@@ -69,7 +69,7 @@
* different threads.
*
* @param[in] esp pointer to the @p EventSource structure
- * @param[in] elp pointer to the @p EventListener structure
+ * @param[out] elp pointer to the @p EventListener structure
* @param[in] mask the mask of event flags to be ORed to the thread when
* the event source is broadcasted
*