()
| 840 | |
| 841 | #[no_mangle] |
| 842 | pub extern "C" fn bloom_init_audio() { |
| 843 | #[cfg(target_os = "linux")] |
| 844 | { |
| 845 | use std::sync::atomic::Ordering; |
| 846 | AUDIO_RUNNING.store(true, Ordering::SeqCst); |
| 847 | std::thread::spawn(|| { |
| 848 | alsa_audio_thread(); |
| 849 | }); |
| 850 | } |
| 851 | } |
| 852 | |
| 853 | #[no_mangle] |
| 854 | pub extern "C" fn bloom_close_audio() { |
nothing calls this directly
no test coverage detected