! destroy a hardware thread by its handle */
| 129 | |
| 130 | /*! destroy a hardware thread by its handle */ |
| 131 | void destroyThread(thread_t tid) { |
| 132 | TerminateThread(HANDLE(tid),0); |
| 133 | CloseHandle(HANDLE(tid)); |
| 134 | } |
| 135 | |
| 136 | /*! creates thread local storage */ |
| 137 | tls_t createTls() { |
nothing calls this directly
no outgoing calls
no test coverage detected