Skip to content

Instantly share code, notes, and snippets.

@vsouza
Forked from matryer/term_context.go
Created September 28, 2020 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vsouza/547a9749e71411ca30a8c73937c8dd79 to your computer and use it in GitHub Desktop.
Save vsouza/547a9749e71411ca30a8c73937c8dd79 to your computer and use it in GitHub Desktop.
Making Ctrl+C termination cancel the context.Context
func main() {
ctx := context.Background()
// trap Ctrl+C and call cancel on the context
ctx, cancel := context.WithCancel(ctx)
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
defer func() {
signal.Stop(c)
cancel()
}()
go func() {
select {
case <-c:
cancel()
case <-ctx.Done():
}
}()
doSomethingAwesome(ctx)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment