1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #1978 from OlegHahm/msg_send_int_set_pid

core: always set sender_pid in msg_send_int
This commit is contained in:
Oleg Hahm 2014-11-11 00:15:42 +01:00
commit 964d77863f

View File

@ -181,10 +181,10 @@ int msg_send_int(msg_t *m, kernel_pid_t target_pid)
return -1;
}
m->sender_pid = target_pid;
if (target->status == STATUS_RECEIVE_BLOCKED) {
DEBUG("msg_send_int: Direct msg copy from %" PRIkernel_pid " to %" PRIkernel_pid ".\n", thread_getpid(), target_pid);
m->sender_pid = target_pid;
/* copy msg to target */
msg_t *target_message = (msg_t*) target->wait_data;