May be called in other modules to run startfn in non-worker pthreads.
| 69 | |
| 70 | // May be called in other modules to run startfn in non-worker pthreads. |
| 71 | void run_worker_startfn() { |
| 72 | if (g_worker_startfn) { |
| 73 | g_worker_startfn(); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | void run_tagged_worker_startfn(bthread_tag_t tag) { |
| 78 | if (g_tagged_worker_startfn) { |
no outgoing calls
no test coverage detected