| 408 | } |
| 409 | |
| 410 | inline void |
| 411 | ConnectionTracker::TxnState::update_max_count(int count) |
| 412 | { |
| 413 | auto cmax = _g->_count_max.load(); |
| 414 | if (count > cmax) { |
| 415 | _g->_count_max.compare_exchange_weak(cmax, count); |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | inline void |
| 420 | ConnectionTracker::TxnState::blocked() |
no test coverage detected