While testing the new 1.12 features I tried the following in a REPL:
f(x) = while x end
f(true)
The infinite loop works, so is there a way to break out of it in the REPL using CTRL+ D? Now that there are interactive and worker threads, how is the break command handled?
IIRC the keyboard interrupt (always been Ctrl+C for me on Windows) needs something to work gracefully on Windows. Yielding to the task scheduler (which many functions like sleep do) is one thing, but it’s not everything. For me, spamming Ctrl+C does eventually force a SIGINT and interrupt.
julia> while true sleep(1) end # Ctrl+C works first try
ERROR: InterruptException:
...
julia> while true Libc.systemsleep(1) end # non-yielding sleep, need spamming
WARNING: Force throwing a SIGINT
ERROR: InterruptException:
...
julia> while true end
WARNING: Force throwing a SIGINT
ERROR: InterruptException:
...