mirror of
https://github.com/janet-lang/janet
synced 2024-11-25 01:37:19 +00:00
f45571033c
Also improve interrupts to work better with busy loops and signals.
11 lines
276 B
Plaintext
11 lines
276 B
Plaintext
(defn action []
|
|
(print "Handled SIGHUP!")
|
|
(flush))
|
|
|
|
(defn main [_]
|
|
# Set the interrupt-interpreter argument to `true` to allow
|
|
# interrupting the busy loop `(forever)`. By default, will not
|
|
# interrupt the interpreter.
|
|
(os/sigaction :hup action true)
|
|
(forever))
|