! creates thread local storage */
| 135 | |
| 136 | /*! creates thread local storage */ |
| 137 | tls_t createTls() { |
| 138 | return tls_t(size_t(TlsAlloc())); |
| 139 | } |
| 140 | |
| 141 | /*! set the thread local storage pointer */ |
| 142 | void setTls(tls_t tls, void* const ptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected