| 165 | } THREAD_CTX; |
| 166 | |
| 167 | static void thread_run(void *ctx) |
| 168 | { |
| 169 | THREAD_CTX *tc = (THREAD_CTX*) ctx; |
| 170 | |
| 171 | run(tc->local, tc->peer, tc->count, tc->dlen, |
| 172 | tc->inter, tc->need_read, tc->mio_on, tc->quit); |
| 173 | acl_myfree(ctx); |
| 174 | } |
| 175 | |
| 176 | static void usage(const char *procname) |
| 177 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…