You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
format!("GenMC currently does not model the failure ordering for `compare_exchange`. {was_upgraded_msg}. Miri with GenMC might miss bugs related to this memory access.")
692
701
}
693
-
FileInProcOpened => format!("files in `/proc` can bypass the Abstract Machine and might not work properly in Miri")
702
+
FileInProcOpened => format!("files in `/proc` can bypass the Abstract Machine and might not work properly in Miri"),
703
+
SocketListenUnsupportedBacklog{ provided, supported, .. } => format!("called `listen` on socket with backlog value of {provided} but only {supported} is supported"),
694
704
};
695
705
696
706
let notes = match&e {
697
707
ProgressReport{ block_count } => {
698
708
vec![note!("so far, {block_count} basic blocks have been executed")]
0 commit comments