diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-25 10:07:18 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-25 10:07:18 +0000 |
commit | 811bbbc8fbe38cda9361b11d0e23fbc927153c53 (patch) | |
tree | 8b3ba6d4e560b6204452749653d326e4c5114c9f /src/chevents.c | |
parent | 86f169d26dbfb0ea1a35e1736401464e10c7ac94 (diff) | |
download | ChibiOS-811bbbc8fbe38cda9361b11d0e23fbc927153c53.tar.gz ChibiOS-811bbbc8fbe38cda9361b11d0e23fbc927153c53.tar.bz2 ChibiOS-811bbbc8fbe38cda9361b11d0e23fbc927153c53.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@184 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chevents.c')
-rw-r--r-- | src/chevents.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/chevents.c b/src/chevents.c index 72ca7c182..9fd2e4543 100644 --- a/src/chevents.c +++ b/src/chevents.c @@ -53,9 +53,9 @@ void chEvtRegister(EventSource *esp, EventListener *elp, t_eventid eid) { * @param elp pointer to the \p EventListener structure
* @note If the event listener is not registered on the specified event source
* then the function does nothing.
- * @note For optimal performance perform the unregister operations in inverse
- * order of the register operations (elements are found on top of the
- * list).
+ * @note For optimal performance it is better to perform the unregister
+ * operations in inverse order of the register operations (elements are
+ * found on top of the list).
*/
void chEvtUnregister(EventSource *esp, EventListener *elp) {
EventListener *p = (EventListener *)esp;
|