mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: add an exit hook facility
Add a new API (not public/exported) for registering a function with the runtime that should be called when program execution terminates, to be used in the new code coverage re-implementation. The API looks like func addExitHook(f func(), runOnNonZeroExit bool) The first argument is the function to be run, second argument controls whether the function is invoked even if there is a call to os.Exit with a non-zero status. Exit hooks are run in reverse order of registration, e.g. the first hook to be registered will be the last to run. Exit hook functions are not allowed to panic or to make calls to os.Exit. Updates #51430. Change-Id: I906f8c5184b7c1666f05a62cfc7833bf1a4300c4 Reviewed-on: https://go-review.googlesource.com/c/go/+/354790 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Than McIntosh <thanm@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
cf83a490e4
commit
07bdf1dc54
5 changed files with 262 additions and 14 deletions
|
|
@ -249,6 +249,7 @@ func main() {
|
|||
fn := main_main // make an indirect call, as the linker doesn't know the address of the main package when laying down the runtime
|
||||
fn()
|
||||
if raceenabled {
|
||||
runExitHooks(0) // run hooks now, since racefini does not return
|
||||
racefini()
|
||||
}
|
||||
|
||||
|
|
@ -268,6 +269,7 @@ func main() {
|
|||
if panicking.Load() != 0 {
|
||||
gopark(nil, nil, waitReasonPanicWait, traceEvGoStop, 1)
|
||||
}
|
||||
runExitHooks(0)
|
||||
|
||||
exit(0)
|
||||
for {
|
||||
|
|
@ -279,8 +281,9 @@ func main() {
|
|||
// os_beforeExit is called from os.Exit(0).
|
||||
//
|
||||
//go:linkname os_beforeExit os.runtime_beforeExit
|
||||
func os_beforeExit() {
|
||||
if raceenabled {
|
||||
func os_beforeExit(exitCode int) {
|
||||
runExitHooks(exitCode)
|
||||
if exitCode == 0 && raceenabled {
|
||||
racefini()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue