()
| 21 | } |
| 22 | |
| 23 | unsafe fn second() -> ! { |
| 24 | println!("Second want to continue,but need to wait first"); |
| 25 | semaphore_down(SEM_SYNC); |
| 26 | println!("Second can work now"); |
| 27 | exit(0) |
| 28 | } |
| 29 | |
| 30 | #[no_mangle] |
| 31 | pub fn main() -> i32 { |
nothing calls this directly
no test coverage detected