()
| 38 | } |
| 39 | |
| 40 | unsafe fn f() -> ! { |
| 41 | let mut t = 2usize; |
| 42 | for _ in 0..PER_THREAD { |
| 43 | lock(); |
| 44 | critical_section(&mut t); |
| 45 | unlock(); |
| 46 | } |
| 47 | exit(t as i32) |
| 48 | } |
| 49 | |
| 50 | #[no_mangle] |
| 51 | pub fn main(argc: usize, argv: &[&str]) -> i32 { |
nothing calls this directly
no test coverage detected