| 121 | } THREAD_CTX; |
| 122 | |
| 123 | static void thread_run(void *ctx) |
| 124 | { |
| 125 | THREAD_CTX *tc = (THREAD_CTX*) ctx; |
| 126 | |
| 127 | run(tc->local, tc->inter, tc->mio_on, tc->need_echo); |
| 128 | acl_myfree(ctx); |
| 129 | } |
| 130 | |
| 131 | static void usage(const char *procname) |
| 132 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…