(param: *mut c_void)
| 307 | unsafe impl Send for QueryThreadData {} |
| 308 | |
| 309 | unsafe extern "system" fn query_thread(param: *mut c_void) -> u32 { |
| 310 | unsafe { query_thread_impl(param) } |
| 311 | } |
| 312 | |
| 313 | unsafe fn query_thread_impl(param: *mut c_void) -> u32 { |
| 314 | unsafe { |
nothing calls this directly
no test coverage detected