aboutsummaryrefslogtreecommitdiffstats
path: root/src/chevents.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-23 10:38:16 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-23 10:38:16 +0000
commit077d372e2ffc959be1f13d23ee14d00a53589b4a (patch)
treeed13caefb991ae693201440cb75856e93699a40a /src/chevents.c
parent65961139301315ba0507a07c607e961b1c40a5ae (diff)
downloadChibiOS-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.c6
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;