| 266 | } |
| 267 | |
| 268 | void |
| 269 | HQTransaction::_schedule_read_complete_event() |
| 270 | { |
| 271 | if (this->_read_complete_event) { |
| 272 | // The event is already scheduled. No need to schedule the same event. |
| 273 | return; |
| 274 | } |
| 275 | |
| 276 | this->_read_complete_event = this->_thread->schedule_imm(this, VC_EVENT_READ_COMPLETE, &this->_read_vio); |
| 277 | } |
| 278 | |
| 279 | void |
| 280 | HQTransaction::_unschedule_read_complete_event() |
no test coverage detected