| 162 | |
| 163 | |
| 164 | static void close_microham() |
| 165 | { |
| 166 | if (!uh_is_initialized) |
| 167 | { |
| 168 | return; |
| 169 | } |
| 170 | |
| 171 | TRACE("%10d:Closing MicroHam device\n", TIME); |
| 172 | uh_is_initialized = 0; |
| 173 | // wait for read_device thread to finish |
| 174 | pthread_join(readthread, NULL); |
| 175 | close_all_files(); |
| 176 | } |
| 177 | |
| 178 | |
| 179 | #if defined(WIN32) || !defined(HAVE_GLOB_H) |
no test coverage detected