Detect whether thread is marked "exiting" or "exited".
| 286 | |
| 287 | // Detect whether thread is marked "exiting" or "exited". |
| 288 | bool ExitingOrExited() const { return state_ >= ThreadState::kExiting; } |
| 289 | |
| 290 | // Kick (deliver signal to) thread to get an in-progress system |
| 291 | // call to return EINTR. Note that this just sends one signal! |