2014-04-26 09:18:56 +00:00
|
|
|
package Shutdown
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"container/list"
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
"os"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
var (
|
2015-06-17 15:44:52 +00:00
|
|
|
shutdownSignal chan os.Signal = make(chan os.Signal) // A channel for the shutdown event
|
|
|
|
shutdownHandlers *list.List = nil // All shutdown handlers
|
|
|
|
senderName LM.Sender = `System::Shutdown` // This is the name for logging event from this package
|
|
|
|
stopAllRequests bool = false // Does the system goes down now?
|
2014-04-26 09:18:56 +00:00
|
|
|
)
|