! * \brief Check whether the thread is joinable * \return true if the thread is joinable */
| 222 | * \return true if the thread is joinable |
| 223 | */ |
| 224 | bool joinable() const { |
| 225 | if (thread_.load()) { |
| 226 | CHECK_EQ(auto_remove_, false); |
| 227 | // be checked by searching the group or exit event. |
| 228 | return thread_.load()->joinable(); |
| 229 | } |
| 230 | return false; |
| 231 | } |
| 232 | |
| 233 | /*! |
| 234 | * \brief Thread join |
no outgoing calls
no test coverage detected