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 1b29a66 commit e00e070Copy full SHA for e00e070
tests/genmc/pass/shims/mutex_simple.rs
@@ -32,6 +32,8 @@ fn miri_start(_argc: isize, _argv: *const *const u8) -> isize {
32
}
33
34
fn main_() {
35
+ // FIXME(genmc): Try using stack/heap allocated Mutexes once GenMC has mixed-size access support.
36
+
37
let mut guard = LOCK.lock().unwrap();
38
for &v in guard.iter() {
39
assert!(v == 1234); // Check that mutex values are initialized correctly
0 commit comments