forked from TrueCloudLab/frostfs-http-gw
df3c87af79
Some of this code is going to be moved to SDK library, so it's important. Signed-off-by: Roman Khimov <roman@nspcc.ru>
22 lines
465 B
Go
22 lines
465 B
Go
package global
|
|
|
|
import (
|
|
"context"
|
|
"os/signal"
|
|
"sync"
|
|
"syscall"
|
|
)
|
|
|
|
var (
|
|
globalContext context.Context
|
|
globalContextOnce sync.Once
|
|
)
|
|
|
|
// Context returns global context with initialized INT, TERM and HUP signal
|
|
// handlers set to notify this context.
|
|
func Context() context.Context {
|
|
globalContextOnce.Do(func() {
|
|
globalContext, _ = signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP)
|
|
})
|
|
return globalContext
|
|
}
|