diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-06-22 17:31:00 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-06-22 17:31:00 +0000 |
commit | cfe2c9e34731b70f43c0c7efacd57f555947c3ea (patch) | |
tree | 74492e69b5ff7db4a34424695c8cfb05015fb940 /src/chevents.c | |
parent | 1a4bff432f34ada4dc444f38c79565c15a504e44 (diff) | |
download | ChibiOS-cfe2c9e34731b70f43c0c7efacd57f555947c3ea.tar.gz ChibiOS-cfe2c9e34731b70f43c0c7efacd57f555947c3ea.tar.bz2 ChibiOS-cfe2c9e34731b70f43c0c7efacd57f555947c3ea.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1052 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chevents.c')
-rw-r--r-- | src/chevents.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/chevents.c b/src/chevents.c index a7089cb13..098adce5e 100644 --- a/src/chevents.c +++ b/src/chevents.c @@ -178,9 +178,8 @@ void chEvtBroadcastI(EventSource *esp) { * @brief Invokes the event handlers associated with a mask.
*
* @param[in] mask mask of the events to be dispatched
- * @param[in] handlers an array of @p evhandler_t. The array must be
- * have indexes from zero up the higher registered event
- * identifier.
+ * @param[in] handlers an array of @p evhandler_t. The array must have size
+ * equal to the number of bits in eventmask_t.
*/
void chEvtDispatch(const evhandler_t handlers[], eventmask_t mask) {
eventid_t eid;
|