()
| 122 | |
| 123 | #[pyfunction] |
| 124 | fn closelog() { |
| 125 | if global_ident().read().is_some() { |
| 126 | let mut locked_ident = global_ident().write(); |
| 127 | unsafe { libc::closelog() }; |
| 128 | *locked_ident = None; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | #[pyfunction] |
| 133 | fn setlogmask(maskpri: i32) -> i32 { |
nothing calls this directly
no test coverage detected