]> Cypherpunks repositories - gostls13.git/commit
runtime: do not explicitly exit on ctrl handler
authorJason A. Donenfeld <Jason@zx2c4.com>
Tue, 14 Jul 2020 07:41:03 +0000 (01:41 -0600)
committerJason A. Donenfeld <Jason@zx2c4.com>
Sat, 15 Aug 2020 05:58:24 +0000 (05:58 +0000)
commitc0dded04f7ded5048b44200078a1f723f5e1bcc1
tree4cecc8251d70e81dc2deb94c14c1a92cf76ed731
parent69d34e2c6965f70fe1ead3e7e8ab45ada3267ebc
runtime: do not explicitly exit on ctrl handler

The default ctrl+c handler should process exits in situations where it
makes sense, like console apps, but not in situations where it doesn't,
like libraries or services. Therefore, we should remove the exit(2) so
that the default handler is used for this. This also uses the more
proper windows exit code of STATUS_CONTROL_C_EXIT, with the base case
handler installed by KernelBase.dll. In particular, this helps in the
case of services, which previously would terminate when receiving
shutdown signals, instead of passing them onward to the service program.
In this CL, contrary to CL 244959, we do not need to special case
services with expensive detection algorithms, or rely on hard-coded
library/archive flags.

Fixes #40167.
Fixes #40074.

Change-Id: I9bf6ed6f65cefeff754d270aa33fa4df8d0b451f
Reviewed-on: https://go-review.googlesource.com/c/go/+/243597
Run-TryBot: Jason A. Donenfeld <Jason@zx2c4.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
Reviewed-by: Jason A. Donenfeld <Jason@zx2c4.com>
src/runtime/os_windows.go