()
| 324 | /// Get thread identity - uses pthread_self() on Unix for fork compatibility |
| 325 | #[pyfunction] |
| 326 | pub fn get_ident() -> u64 { |
| 327 | current_thread_id() |
| 328 | } |
| 329 | |
| 330 | #[cfg(all(unix, feature = "threading"))] |
| 331 | #[pyfunction] |
no test coverage detected