Searched defs:deadlock_info_t (Results 1 – 1 of 1) sorted by relevance
1012 struct deadlock_info_t { struct1014 explicit deadlock_info_t(pid_t tid_param) : tid(tid_param) {} in deadlock_info_t() function1016 bool empty() const { in empty()1020 std::string to_string() const { in to_string()1038 const pid_t tid; // tid for which the deadlock was checked1039 bool has_cycle = false; // true if there is a cycle detected1040 other_wait_reason_t other_wait_reason = other_wait_reason_t::none;1041 std::vector<std::pair<pid_t, std::string>> chain; // wait chain of tids and mutexes.