Ok, i think i found in the kernel where this is set up.
```
(define 1/check-for-break
...
(let ((exn:break*_0
(let ((tmp_0 (thread-pending-break t_0)))
(if (eq? tmp_0 'hang-up)
exn:break:hang-up/non-engine
(if (eq? tmp_0 'terminate)
exn:break:terminate/non-engine
exn:break/non-engine)))))
(begin
(set-thread-pending-break! t_0 #f)
(lambda ()
(call-with-escape-continuation
(lambda (k_0)
(raise
(|#%app|
exn:break*_0
"user break"
(current-continuation-marks)
k_0)))))))
```
Can i just hack this to check `tmp_0` for the value `'interrupt` or is that wishful thinking? I have no idea what i'm doing =). I am just impatient and want a SIGINT.
There must be some reason SIGINT is not explicitly supported, or i must be missing something.
Nate
> --
> You received this message because you are subscribed to the Google Groups "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
racket-users...@googlegroups.com.
> To view this discussion on the web visit
https://groups.google.com/d/msgid/racket-users/20A87695-C978-435A-9D6B-182B7D565D96%40manicmind.earth.