| 88 | } thread_info; |
| 89 | |
| 90 | static void *run(void *arg) |
| 91 | { |
| 92 | thread_info *tinfo = arg; |
| 93 | ulong64 ts; |
| 94 | |
| 95 | ts = epoch_usec(); |
| 96 | tinfo->err = tinfo->t->fn(); |
| 97 | tinfo->delta = epoch_usec() - ts; |
| 98 | |
| 99 | return arg; |
| 100 | } |
| 101 | #endif |
| 102 | |
| 103 |
no test coverage detected