reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/tsan/rtl/tsan_report.cpp
  252   if (rt->id == 0)  // Little sense in describing the main thread.
  255   Printf("  Thread T%d", rt->id);
  256   if (rt->name && rt->name[0] != '\0')
  256   if (rt->name && rt->name[0] != '\0')
  257     Printf(" '%s'", rt->name);
  259   const char *thread_status = rt->running ? "running" : "finished";
  260   if (rt->thread_type == ThreadType::Worker) {
  261     Printf(" (tid=%zu, %s) is a GCD worker thread\n", rt->os_id, thread_status);
  266   Printf(" (tid=%zu, %s) created by %s", rt->os_id, thread_status,
  267          thread_name(thrbuf, rt->parent_tid));
  268   if (rt->stack)
  272   PrintStack(rt->stack);