| 217 | } |
| 218 | |
| 219 | std::string ToString() { |
| 220 | return strings::StrCat("traceme_id = ", GetTracemeId(), |
| 221 | ", inter queue size = ", TaskQueueSize(true), |
| 222 | ", inter inflight = ", GetInflightTaskCount(true), |
| 223 | ", intra queue size = ", TaskQueueSize(false), |
| 224 | ", intra inflight = ", GetInflightTaskCount(false)); |
| 225 | } |
| 226 | |
| 227 | private: |
| 228 | // To reduce cache misses, we use a doubly-linked list of Waiter structs and |
no test coverage detected