| 181 | static thread_local OS_thread_info os_thread_info; |
| 182 | |
| 183 | static const OS_thread_info *get_os_thread_info() |
| 184 | { |
| 185 | auto *res= &os_thread_info; |
| 186 | if (!res->initialized()) |
| 187 | res->init(); |
| 188 | return res; |
| 189 | } |
| 190 | |
| 191 | /* |
| 192 | Attach/associate the connection with the OS thread, |
no test coverage detected