rsgc 1.1.0

Concurrent GC library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(unix)]
pub mod unix;
#[cfg(any(target_os="macos", target_os = "ios"))]
pub mod mach;
#[cfg(windows)]
pub mod windows;

#[cfg(unix)]
pub use unix::install_signal_handlers;

#[cfg(windows)]
pub use windows::install_signal_handlers;