| 409 | } |
| 410 | |
| 411 | bool eventgroupinfo::is_selective() const { |
| 412 | // Selective eventgroups always contain a single event |
| 413 | std::scoped_lock its_lock(events_mutex_); |
| 414 | if (events_.size() != 1) |
| 415 | return false; |
| 416 | |
| 417 | return ((*events_.begin())->get_type() == event_type_e::ET_SELECTIVE_EVENT); |
| 418 | } |
| 419 | |
| 420 | void eventgroupinfo::update_id() { |
| 421 | id_++; |
no test coverage detected