| 61 | } |
| 62 | |
| 63 | uint64_t RowData::get_max_sample() |
| 64 | { |
| 65 | std::lock_guard<std::mutex> lock(_global_visitor_mutex); |
| 66 | |
| 67 | if (_annotations.empty()) |
| 68 | return 0; |
| 69 | return _annotations.back()->end_sample(); |
| 70 | } |
| 71 | |
| 72 | uint64_t RowData::get_max_annotation() |
| 73 | { |
no test coverage detected