2016-04-26 12:51:14 -05:00
|
|
|
#![feature(intrinsics)]
|
|
|
|
|
|
|
|
pub mod rusti {
|
|
|
|
extern "rust-intrinsic" {
|
2022-06-22 06:02:23 -05:00
|
|
|
pub fn atomic_xchg_seqcst<T>(dst: *mut T, src: T) -> T;
|
2016-04-26 12:51:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2022-06-22 06:02:23 -05:00
|
|
|
pub fn atomic_xchg_seqcst(dst: *mut isize, src: isize) -> isize {
|
2016-04-26 12:51:14 -05:00
|
|
|
unsafe {
|
2022-06-22 06:02:23 -05:00
|
|
|
rusti::atomic_xchg_seqcst(dst, src)
|
2016-04-26 12:51:14 -05:00
|
|
|
}
|
2015-03-18 16:05:24 -05:00
|
|
|
}
|