! * \brief Make the thread joinable (by removing the auto_remove flag) * \warning Care should be taken not to cause a race condition between this call * and parallel execution of this thread auto-removing itself */
| 214 | * and parallel execution of this thread auto-removing itself |
| 215 | */ |
| 216 | void make_joinable() { |
| 217 | auto_remove_ = false; |
| 218 | } |
| 219 | |
| 220 | /*! |
| 221 | * \brief Check whether the thread is joinable |
no outgoing calls
no test coverage detected