github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/events/onSignalReceived/signal_detail.inc.md (about) 1 The interrupts listed above are a subset of what is supported on each operating 2 system. Please consult your operating systems docs for details on each signal 3 and what their function is. 4 5 ### Windows Support 6 7 While Windows doesn't officially support signals, the following POSIX signals 8 are emulated: 9 10 ```go 11 var interrupts = map[string]syscall.Signal{ 12 "SIGHUP": syscall.SIGHUP, 13 "SIGINT": syscall.SIGINT, 14 "SIGQUIT": syscall.SIGQUIT, 15 "SIGILL": syscall.SIGILL, 16 "SIGTRAP": syscall.SIGTRAP, 17 "SIGABRT": syscall.SIGABRT, 18 "SIGBUS": syscall.SIGBUS, 19 "SIGFPE": syscall.SIGFPE, 20 "SIGKILL": syscall.SIGKILL, 21 "SIGSEGV": syscall.SIGSEGV, 22 "SIGPIPE": syscall.SIGPIPE, 23 "SIGALRM": syscall.SIGALRM, 24 "SIGTERM": syscall.SIGTERM, 25 } 26 ``` 27 28 ### Plan 9 Support 29 30 Plan 9 is not supported.