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 87c23a4 commit 5df4dfbCopy full SHA for 5df4dfb
.vscode/settings.json
@@ -11,5 +11,6 @@
11
"Pico"
12
],
13
"cmake.mergedCompileCommands": "${workspaceFolder}/build/merged_compile_commands.json",
14
- "C_Cpp.default.compileCommands": "${workspaceFolder}/build/merged_compile_commands.json"
+ "C_Cpp.default.compileCommands": "${workspaceFolder}/build/merged_compile_commands.json",
15
+ "cmake.generator": "Ninja"
16
}
lib/src/vm/share/runtime/Scheduler.cpp
@@ -434,7 +434,7 @@ void Scheduler::sleep_forever() {
434
435
if (AbortOnInfiniteWait) {
436
TTY_TRACE_CR(("Infinite wait detected. Aborting ..."));
437
- *((int*)0x01) = 1; // IMPL_NOTE: perhaps adding an Os::abort()?
+ abort();
438
current_thread_to_primordial();
439
SHOULD_NOT_REACH_HERE();
440
} else {
0 commit comments