| 221 | bool is_shutting_down() { return is_bit(shift::shutting_down); } |
| 222 | void set_shutting_down(bool flag = true) { set_bit(shift::shutting_down, flag); } |
| 223 | bool allow_work_stealing() { return is_bit(shift::enable_work_stealing) && |
| 224 | !(flags & THREAD_PAUSE_WORK_STEALING); } |
| 225 | int set_error_number() { |
| 226 | if (likely(error_number)) { |
| 227 | errno = error_number; |
no outgoing calls
no test coverage detected