Home | History | Annotate | Download | only in memcheck

Lines Matching refs:tid

69  *  tid - Thread ID of the thread that's being created.
74 create_new_thread(ProcDesc* proc, uint32_t tid)
81 new_thread->tid = tid;
175 * tid - Thread ID to look up thread descriptor for.
180 get_thread_from_tid(uint32_t tid)
187 if (tid == current_tid && current_thread != NULL) {
192 if (tid == thread->tid) {
193 if (tid == current_tid) {
217 if (current_tid == thread->tid) {
228 * tid - Thread ID to look up process descriptor for.
234 get_process_from_tid(uint32_t tid)
236 const ThreadDesc* thread = get_thread_from_tid(tid);
379 MD("memcheck: Thread stack for %s[pid=%u, tid=%u] is too big: %u",
380 thread->process->image_path, thread->process->pid, thread->tid,
456 T(PROC_NEW_PID, "memcheck: init_pid(pid=%u) in current thread tid=%u\n",
461 memcheck_switch(uint32_t tid)
467 current_tid = tid;
486 ME("memcheck: FORK(%u, %u): Unable to look up parent process. Current tid=%u",
506 T(PROC_FORK, "memcheck: FORK(tgid=%u, new_pid=%u) by %s[pid=%u] (tid=%u)\n",
525 ME("memcheck: CLONE(%u, %u) Unable to look up parent process. Current tid=%u",
538 T(PROC_CLONE, "memcheck: CLONE(tgid=%u, new_tid=%u) by %s[pid=%u] (tid=%u)\n",
550 ME("memcheck: CMDL(%s, %u): Unable to look up process for current tid=%3u",
590 ME("memcheck: EXIT(%u): Unable to look up thread for current tid=%u",
711 ME("memcheck: MMAP(0x%08X, 0x%08X, 0x%08X, %s) Unable to look up current process. Current tid=%u",
756 ME("memcheck: UNMAP(0x%08X, 0x%08X) Unable to look up current process. Current tid=%u",