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 a72a929 commit 12c8888Copy full SHA for 12c8888
src/shims/posix/linux/sync.rs
@@ -63,7 +63,9 @@ pub fn futex<'tcx>(
63
let bitset = this.read_scalar(&args[6])?.to_u32()?;
64
65
if bitset != u32::MAX {
66
- throw_unsup_format!("Miri does not support `futex` syscall with `op=FUTEX_WAIT_BITSET` with a bitset other than UINT_MAX");
+ throw_unsup_format!(
67
+ "Miri does not support `futex` syscall with `op=FUTEX_WAIT_BITSET` with a bitset other than UINT_MAX"
68
+ );
69
}
70
} else {
71
if args.len() < 5 {
0 commit comments