diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-07-23 10:38:16 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-07-23 10:38:16 +0000 |
commit | 077d372e2ffc959be1f13d23ee14d00a53589b4a (patch) | |
tree | ed13caefb991ae693201440cb75856e93699a40a /src/chevents.c | |
parent | 65961139301315ba0507a07c607e961b1c40a5ae (diff) | |
download | ChibiOS-077d372e2ffc959be1f13d23ee14d00a53589b4a.tar.gz ChibiOS-077d372e2ffc959be1f13d23ee14d00a53589b4a.tar.bz2 ChibiOS-077d372e2ffc959be1f13d23ee14d00a53589b4a.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@349 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 93f28f0ec..87ba7ca95 100644 --- a/src/chevents.c +++ b/src/chevents.c @@ -90,11 +90,11 @@ void chEvtClear(eventmask_t mask) { * Signals all the Event Listeners registered on the specified Event Source.
* @param esp pointer to the \p EventSource structure
*/
-void chEvtSend(EventSource *esp) {
+void chEvtBroadcast(EventSource *esp) {
chSysLock();
- chEvtSendI(esp);
+ chEvtBroadcastI(esp);
chSchRescheduleS();
chSysUnlock();
@@ -105,7 +105,7 @@ void chEvtSend(EventSource *esp) { * @param esp pointer to the \p EventSource structure
* @note This function does not reschedule.
*/
-void chEvtSendI(EventSource *esp) {
+void chEvtBroadcastI(EventSource *esp) {
EventListener *elp;
elp = esp->es_next;
|