(&self)
| 38 | /// threads exist. |
| 39 | #[cfg(all(unix, feature = "threading"))] |
| 40 | pub(crate) unsafe fn reinit_after_fork(&self) { |
| 41 | unsafe { crate::common::lock::reinit_rwlock_after_fork(&self.inner) }; |
| 42 | } |
| 43 | |
| 44 | #[inline] |
| 45 | pub unsafe fn intern<S: InternableString>( |
no test coverage detected