| 569 | |
| 570 | #[derive(Clone)] |
| 571 | pub(crate) struct GlobalRef { |
| 572 | pub id: usize, |
| 573 | pub queue: Arc<GlobalQueue<MultiStream>>, |
| 574 | pub monitor: Option<Arc<Mutex<Monitor>>>, |
| 575 | pub crashes: Arc<Mutex<HashSet<String>>>, |
| 576 | pub hangs: Arc<Mutex<HashSet<String>>>, |
| 577 | } |
| 578 | |
| 579 | impl GlobalRef { |
| 580 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected