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 16ffa1d commit 235d92fCopy full SHA for 235d92f
stdlib/public/Concurrency/Mutex.cpp
@@ -16,6 +16,10 @@
16
#include "../runtime/MutexPThread.cpp"
17
#include "../runtime/MutexWin32.cpp"
18
19
+#ifdef SWIFT_STDLIB_SINGLE_THREADED_RUNTIME
20
+ #include "swift/Runtime/MutexSingleThreaded.h"
21
+#endif
22
+
23
SWIFT_NORETURN void swift::fatalError(uint32_t flags, const char *format, ...) {
24
abort();
-}
25
+}
0 commit comments