| 129 | } |
| 130 | |
| 131 | int |
| 132 | FetchSM::InvokePlugin(int event, void *data) |
| 133 | { |
| 134 | EThread *mythread = this_ethread(); |
| 135 | SCOPED_MUTEX_LOCK(lock, mutex, mythread); |
| 136 | if (contp) { |
| 137 | SCOPED_MUTEX_LOCK(lock2, contp->mutex, mythread); |
| 138 | return contp->handleEvent(event, data); |
| 139 | } else { |
| 140 | return TS_ERROR; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | bool |
| 145 | FetchSM::has_body() |
nothing calls this directly
no test coverage detected