| 65 | } |
| 66 | |
| 67 | bool BaseThread::TryStart() |
| 68 | { |
| 69 | int error = DoStart(); |
| 70 | if (error == 0) |
| 71 | return true; |
| 72 | if (error != EAGAIN) |
| 73 | TOFT_CHECK_PTHREAD_ERROR(error); |
| 74 | return false; |
| 75 | } |
| 76 | |
| 77 | bool BaseThread::DoDetach() |
| 78 | { |
nothing calls this directly
no outgoing calls
no test coverage detected