| 32 | #include "iocore/eventsystem/EventSystem.h" |
| 33 | |
| 34 | TS_INLINE |
| 35 | ProtectedQueue::ProtectedQueue() |
| 36 | { |
| 37 | Event e; |
| 38 | ink_mutex_init(&lock); |
| 39 | ink_atomiclist_init(&al, "ProtectedQueue", (char *)&e.link.next - (char *)&e); |
| 40 | ink_cond_init(&might_have_data); |
| 41 | } |
| 42 | |
| 43 | TS_INLINE void |
| 44 | ProtectedQueue::signal() |
nothing calls this directly
no test coverage detected