| 131 | } |
| 132 | |
| 133 | void* add_concurrency_proc(void*) { |
| 134 | bthread_t tid; |
| 135 | bthread_start_background(&tid, &BTHREAD_ATTR_SMALL, sleep_proc, NULL); |
| 136 | bthread_join(tid, NULL); |
| 137 | return NULL; |
| 138 | } |
| 139 | |
| 140 | bool set_min_concurrency(int num) { |
| 141 | std::stringstream ss; |
nothing calls this directly
no test coverage detected