We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfd8c96 commit d2a690bCopy full SHA for d2a690b
libs/std/src/sys/sync/thread_parking/mod.rs
@@ -1,2 +1,10 @@
1
+// For crucible-mir's benefit, we always use unsupported::Parker, which
2
+// implements all thread-parking functions as no-ops. This is arguably too
3
+// simplistic, as this skips calling operations that could trigger a context
4
+// switch in concurrent programs. Although crux-mir does have some support for
5
+// modeling this sort of concurrency, it has since bitrotted. (See #238.) If
6
+// this concurrency support is revived, then we will need to revisit the
7
+// approach here.
8
+
9
mod unsupported;
10
pub use unsupported::Parker;
0 commit comments