Home
last modified time | relevance | path

Searched defs:deadlock_info_t (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/system/media/audio_utils/include/audio_utils/
H A Dmutex.h1037 struct deadlock_info_t { struct
1039 explicit deadlock_info_t(pid_t tid_param) : tid(tid_param) {} in deadlock_info_t() function
1041 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 checked
1064 bool has_cycle = false; // true if there is a cycle detected
1065 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.