mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
core: msg: whitespace fixes
This commit is contained in:
parent
f1b060c055
commit
af542058ee
@ -67,7 +67,7 @@ int msg_send(msg_t *m, unsigned int target_pid, bool block)
|
||||
|
||||
dINT();
|
||||
|
||||
if (target->status != STATUS_RECEIVE_BLOCKED) {
|
||||
if (target->status != STATUS_RECEIVE_BLOCKED) {
|
||||
if (target->msg_array && queue_msg(target, m)) {
|
||||
eINT();
|
||||
return 1;
|
||||
@ -121,7 +121,7 @@ int msg_send_int(msg_t *m, unsigned int target_pid)
|
||||
{
|
||||
tcb_t *target = (tcb_t *) sched_threads[target_pid];
|
||||
|
||||
if (target->status == STATUS_RECEIVE_BLOCKED) {
|
||||
if (target->status == STATUS_RECEIVE_BLOCKED) {
|
||||
DEBUG("msg_send_int: Direct msg copy from %i to %i.\n", thread_getpid(), target_pid);
|
||||
|
||||
m->sender_pid = target_pid;
|
||||
|
Loading…
Reference in New Issue
Block a user