uv_after_work_cb has 1 argument before node-v0.9.4 and * 2 arguments since node-v0.9.4 * https://github.com/libuv/libuv/commit/92fb84b751e18f032c02609467f44bfe927b80c5 */
| 2388 | * https://github.com/libuv/libuv/commit/92fb84b751e18f032c02609467f44bfe927b80c5 |
| 2389 | */ |
| 2390 | inline void AsyncExecuteComplete(uv_work_t *req) { |
| 2391 | AsyncWorker* worker = static_cast<AsyncWorker*>(req->data); |
| 2392 | worker->WorkComplete(); |
| 2393 | worker->Destroy(); |
| 2394 | } |
| 2395 | inline void AsyncExecuteComplete (uv_work_t* req, int status) { |
| 2396 | AsyncExecuteComplete(req); |
| 2397 | } |
nothing calls this directly
no test coverage detected