| 129 | namespace detail |
| 130 | { |
| 131 | thread_data_base* get_current_thread_data() |
| 132 | { |
| 133 | #if BOOST_PLAT_WINDOWS_RUNTIME |
| 134 | return current_thread_data_base; |
| 135 | #else |
| 136 | if (current_thread_tls_key == TLS_OUT_OF_INDEXES) |
| 137 | { |
| 138 | return 0; |
| 139 | } |
| 140 | return (detail::thread_data_base*)TlsGetValue(current_thread_tls_key); |
| 141 | #endif |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | namespace |
no outgoing calls
no test coverage detected