| 295 | } |
| 296 | |
| 297 | void |
| 298 | HQTransaction::_schedule_write_ready_event() |
| 299 | { |
| 300 | if (this->_write_ready_event) { |
| 301 | // The event is already scheduled. No need to schedule the same event. |
| 302 | return; |
| 303 | } |
| 304 | |
| 305 | this->_write_ready_event = this->_thread->schedule_imm(this, VC_EVENT_WRITE_READY, &this->_write_vio); |
| 306 | } |
| 307 | |
| 308 | void |
| 309 | HQTransaction::_unschedule_write_ready_event() |
no test coverage detected