Skip to content
This repository has been archived by the owner on Oct 27, 2023. It is now read-only.

tedconf/atexit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git Mirror of https://bitbucket.org/tebeka/atexit


About

Simple atexit implementation for Go.

Note that you have to call atexit.Exit and not os.Exit to terminate your program (that is, if you want the atexit handlers to execute).

Example usage

package main

import (
    "atexit"
    "fmt"
)

func handler() {
    fmt.Println("Exiting")
}

func main() {
        atexit.Register(handler)
        atexit.Exit(0)
}

Install

goinstall bitbucket.org/tebeka/atexit

Contact

Home

https://bitbucket.org/tebeka/atexit

Author

Miki Tebeka <miki.tebeka@gmail.com>