2015-11-17 12:38:19 -05:00
|
|
|
package main
|
2015-09-23 19:42:08 -04:00
|
|
|
|
2022-01-06 16:20:15 -05:00
|
|
|
import "github.com/docker/docker/daemon/config"
|
|
|
|
|
2020-12-22 04:43:01 -05:00
|
|
|
// preNotifyReady sends a message to the host when the API is active, but before the daemon is
|
|
|
|
func preNotifyReady() {
|
2017-02-01 13:52:16 -05:00
|
|
|
}
|
|
|
|
|
2020-12-22 04:43:01 -05:00
|
|
|
// notifyReady sends a message to the host when the server is ready to be used
|
|
|
|
func notifyReady() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// notifyStopping sends a message to the host when the server is shutting down
|
|
|
|
func notifyStopping() {
|
2015-09-23 19:42:08 -04:00
|
|
|
}
|
2022-01-06 16:20:15 -05:00
|
|
|
|
|
|
|
func validateCPURealtimeOptions(_ *config.Config) error {
|
|
|
|
return nil
|
|
|
|
}
|