Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/rt/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ impl State {
};

// All subsequent accesses must happen-after.
state.unsync_mut_locations.track(location, &threads);
state.track_unsync_mut(threads);

// Store the initial thread
Expand Down
8 changes: 4 additions & 4 deletions src/rt/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#[macro_use]
mod location;
pub(crate) use self::location::Location;

mod access;
use self::access::Access;

Expand All @@ -10,10 +14,6 @@ pub(crate) use self::arc::Arc;
mod atomic;
pub(crate) use self::atomic::{fence, Atomic};

#[macro_use]
mod location;
pub(crate) use self::location::Location;

mod cell;
pub(crate) use self::cell::Cell;

Expand Down