summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys/unsupported/thread_local_key.rs
blob: c31b61cbf56d386785f2f43e3ce292eb70004232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pub type Key = usize;

#[inline]
pub unsafe fn create(_dtor: Option<unsafe extern "C" fn(*mut u8)>) -> Key {
    panic!("should not be used on this target");
}

#[inline]
pub unsafe fn set(_key: Key, _value: *mut u8) {
    panic!("should not be used on this target");
}

#[inline]
pub unsafe fn get(_key: Key) -> *mut u8 {
    panic!("should not be used on this target");
}

#[inline]
pub unsafe fn destroy(_key: Key) {
    panic!("should not be used on this target");
}

#[inline]
pub fn requires_synchronized_create() -> bool {
    panic!("should not be used on this target");
}