static*/
| 221 | } |
| 222 | |
| 223 | /*static*/ CDS_EXPORT_API void smr::detach_thread() |
| 224 | { |
| 225 | thread_data* rec = tls_; |
| 226 | if ( rec ) { |
| 227 | tls_ = nullptr; |
| 228 | instance().free_thread_data( static_cast<thread_record*>( rec ), true ); |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | CDS_EXPORT_API void smr::detach_all_thread() |
| 233 | { |
nothing calls this directly
no test coverage detected