Searched defs:deadlock_info_t (Results 1 – 1 of 1) sorted by relevance
1037 struct deadlock_info_t { struct1039 explicit deadlock_info_t(pid_t tid_param) : tid(tid_param) {} in deadlock_info_t() function1041 bool empty() const { in empty()1045 std::string to_string() const { in to_string()1063 const pid_t tid; // tid for which the deadlock was checked1064 bool has_cycle = false; // true if there is a cycle detected1065 other_wait_reason_t other_wait_reason = other_wait_reason_t::none;1066 std::vector<std::pair<pid_t, std::string>> chain; // wait chain of tids and mutexes.