| 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; |
| 228 | error_number = 0; |
| 229 | return -1; |
| 230 | } |
| 231 | return 0; |
| 232 | } |
| 233 | |
| 234 | struct stack_alloc_header { |
| 235 | uint32_t size; |
no test coverage detected