| 255 | } |
| 256 | |
| 257 | inline int |
| 258 | CacheVC::callcont(int event) |
| 259 | { |
| 260 | recursive++; |
| 261 | ink_assert(!stripe || this_ethread() != stripe->mutex->thread_holding); |
| 262 | _action.continuation->handleEvent(event, this); |
| 263 | recursive--; |
| 264 | if (closed) { |
| 265 | die(); |
| 266 | } else if (vio.vc_server) { |
| 267 | handleEvent(EVENT_IMMEDIATE, nullptr); |
| 268 | } |
| 269 | return EVENT_DONE; |
| 270 | } |
| 271 | |
| 272 | inline int |
| 273 | CacheVC::do_read_call(CacheKey *akey) |
no test coverage detected