| 104 | }; |
| 105 | |
| 106 | TS_INLINE void |
| 107 | new_Freer(void *ap, ink_hrtime t) |
| 108 | { |
| 109 | eventProcessor.schedule_in(new FreerContinuation(ap), t, ET_TASK); |
| 110 | } |
| 111 | |
| 112 | template <class C> struct DereferContinuation : public Continuation { |
| 113 | C *p; |
no test coverage detected