Home
last modified time | relevance | path

Searched refs:active_attentions (Results 1 – 1 of 1) sorted by relevance

/openbmc/openpower-hw-diags/attn/
H A Dattn_handler.cpp82 std::vector<Attention> active_attentions; in attnHandler() local
168 active_attentions.emplace_back(Attention::Vital, in attnHandler()
177 active_attentions.emplace_back(Attention::Checkstop, in attnHandler()
185 active_attentions.emplace_back(Attention::Special, in attnHandler()
196 if (!std::is_heap(active_attentions.begin(), active_attentions.end())) in attnHandler()
198 std::make_heap(active_attentions.begin(), active_attentions.end()); in attnHandler()
202 while (false == active_attentions.empty()) in attnHandler()
205 if (RC_SUCCESS == active_attentions.front().handle()) in attnHandler()
212 std::pop_heap(active_attentions.begin(), active_attentions.end()); in attnHandler()
215 active_attentions.pop_back(); in attnHandler()