aboutsummaryrefslogtreecommitdiffstats
path: root/src/chmsg.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/chmsg.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/chmsg.c')
-rw-r--r--src/chmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chmsg.c b/src/chmsg.c
index 8c6fa779f..bcc7117e2 100644
--- a/src/chmsg.c
+++ b/src/chmsg.c
@@ -83,7 +83,7 @@ msg_t chMsgSendWithEvent(Thread *tp, msg_t msg, EventSource *esp) {
#else
fifo_insert(currp, &tp->p_msgqueue);
#endif
- chEvtSendI(esp);
+ chEvtBroadcastI(esp);
currp->p_wtthdp = tp;
currp->p_msg = msg;
chSchGoSleepS(PRSNDMSG);