We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2af873 commit ce1466fCopy full SHA for ce1466f
src/libcore/private.rs
@@ -27,7 +27,7 @@ extern mod rustrt {
27
#[abi = "rust-intrinsic"]
28
extern mod rusti {
29
30
- #[cfg(stage1)] #[cfg(stage2)] #[cfg(stage3)]
+ #[cfg(stage1)] #[cfg(stage2)] #[cfg(stage3)]
31
fn atomic_cxchg(dst: &mut int, old: int, src: int) -> int;
32
fn atomic_xadd(dst: &mut int, src: int) -> int;
33
fn atomic_xsub(dst: &mut int, src: int) -> int;
@@ -38,7 +38,7 @@ type rust_port_id = uint;
38
39
type GlobalPtr = *libc::uintptr_t;
40
41
-// TODO: Remove once snapshots have atomic_cxchg
+// FIXME #3527: Remove once snapshots have atomic_cxchg
42
#[cfg(stage0)]
43
fn compare_and_swap(address: &mut libc::uintptr_t,
44
oldval: libc::uintptr_t,
0 commit comments