| 132 | } |
| 133 | |
| 134 | void aio_stream::set_handle(aio_handle& handle) { |
| 135 | if (stream_) { |
| 136 | handle_->decrease(); |
| 137 | } |
| 138 | |
| 139 | handle_ = &handle; |
| 140 | |
| 141 | if (stream_) { |
| 142 | stream_->aio = handle_->get_handle(); |
| 143 | handle_->increase(); // �����첽������ |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | ACL_ASTREAM* aio_stream::get_astream() const |
| 148 | { |
nothing calls this directly
no test coverage detected