blob: ca230a22fe35bf14e512012b75171a70caf9d160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package main
import "github.com/docker/docker/daemon/config"
// preNotifyReady sends a message to the host when the API is active, but before the daemon is
func preNotifyReady() {
}
// 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() {
}
func validateCPURealtimeOptions(_ *config.Config) error {
return nil
}
|