crossbeam_epoch/
default.rs1use crate::collector::{Collector, LocalHandle};
8use crate::guard::Guard;
9use crate::primitive::{lazy_static, thread_local};
10
11lazy_static! {
12 static ref COLLECTOR: Collector = Collector::new();
14}
15
16thread_local! {
17 static HANDLE: LocalHandle = COLLECTOR.register();
19}
20
21#[inline]
23pub fn pin() -> Guard {
24 with_handle(|handle| handle.pin())
25}
26
27#[inline]
29pub fn is_pinned() -> bool {
30 with_handle(|handle| handle.is_pinned())
31}
32
33pub fn default_collector() -> &'static Collector {
35 &COLLECTOR
36}
37
38#[inline]
39fn with_handle<F, R>(mut f: F) -> R
40where
41 F: FnMut(&LocalHandle) -> R,
42{
43 HANDLE
44 .try_with(|h| f(h))
45 .unwrap_or_else(|_| f(&COLLECTOR.register()))
46}
47
48#[cfg(all(test, not(crossbeam_loom)))]
49mod tests {
50 use crossbeam_utils::thread;
51
52 #[test]
53 fn pin_while_exiting() {
54 struct Foo;
55
56 impl Drop for Foo {
57 fn drop(&mut self) {
58 super::pin();
60 }
61 }
62
63 thread_local! {
64 static FOO: Foo = Foo;
65 }
66
67 thread::scope(|scope| {
68 scope.spawn(|_| {
69 FOO.with(|_| ());
71 super::pin();
72 });
74 })
75 .unwrap();
76 }
77}