Skip to content

Commit

Permalink
do not wait for send message
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Nyberg <jens.nyberg@gmail.com>
  • Loading branch information
jezze committed Nov 14, 2018
1 parent 9d2b885 commit cc93acc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/abi/event.c
Expand Up @@ -17,9 +17,7 @@ unsigned int event_pick(union event_message *message)
unsigned int event_place(unsigned int id, union event_message *message)
{

while (!call_place(id, message, message->header.length));

return message->header.length;
return call_place(id, message, message->header.length);

}

0 comments on commit cc93acc

Please sign in to comment.