``` Thread* t1 = new Thread(...); // get new thread ID osThreadId id1 = t1->gettid(); // get current thread ID osThreadId id2 = Thread::gettid(); ``` `id1` should be the id of the new thread, t1. Instead `id1 == id2`.