| 41 | } |
| 42 | |
| 43 | void stop() |
| 44 | { |
| 45 | terminate(process); |
| 46 | |
| 47 | // TODO(benh): Note that this doesn't wait because that could |
| 48 | // cause a deadlock ... thus, the semantics here are that no more |
| 49 | // dispatches will occur after this function returns but one may |
| 50 | // be occurring concurrently. |
| 51 | } |
| 52 | |
| 53 | template <typename F> |
| 54 | _Deferred<F> defer(F&& f) |
nothing calls this directly
no test coverage detected