Call wih lock held
| 1875 | |
| 1876 | // Call wih lock held |
| 1877 | static void proactor_wake(pn_proactor_t *p) { |
| 1878 | if (!p->context.working && !p->context.wake_pending) { |
| 1879 | p->context.wake_pending = true; |
| 1880 | p->context.completion_ops++; |
| 1881 | post_completion(p->iocp, proactor_wake_key, p); |
| 1882 | } |
| 1883 | } |
| 1884 | |
| 1885 | VOID CALLBACK reap_check_cb(PVOID arg, BOOLEAN /* ignored*/ ); |
| 1886 |
no test coverage detected