1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #907 from OlegHahm/ipc_pingpong_fix

ipc_pingpong: start receiving thread immediately
This commit is contained in:
Oleg Hahm 2014-03-20 22:11:23 +01:00
commit b5f36bab1e

View File

@ -45,7 +45,7 @@ int main(void)
msg_t m;
int pid = thread_create(second_thread_stack, sizeof(second_thread_stack),
PRIORITY_MAIN - 1, CREATE_WOUT_YIELD | CREATE_STACKTEST,
PRIORITY_MAIN - 1, CREATE_STACKTEST,
second_thread, "pong");
m.content.value = 1;