Skip to content
Snippets Groups Projects
Commit 8dab4203 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

Merge pull request #1835 from OlegHahm/msg_receive_yield

core: msg_receive should yield
parents cbb9939f 4fd3d62f
No related branches found
No related tags found
No related merge requests found
......@@ -324,12 +324,17 @@ static int _msg_receive(msg_t *m, int block)
*m = *sender_msg;
/* remove sender from queue */
uint16_t sender_prio = PRIORITY_IDLE;
if (sender->status != STATUS_REPLY_BLOCKED) {
sender->wait_data = NULL;
sched_set_status(sender, STATUS_PENDING);
sender_prio = sender->priority;
}
eINT();
if (sender_prio < PRIORITY_IDLE) {
sched_switch(sender_prio);
}
return 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment