github.com/Heebron/moby@v0.0.0-20221111184709-6eab4f55faf7/cmd/dockerd/daemon_freebsd.go (about) 1 package main 2 3 import "github.com/docker/docker/daemon/config" 4 5 // preNotifyReady sends a message to the host when the API is active, but before the daemon is 6 func preNotifyReady() { 7 } 8 9 // notifyReady sends a message to the host when the server is ready to be used 10 func notifyReady() { 11 } 12 13 // notifyStopping sends a message to the host when the server is shutting down 14 func notifyStopping() { 15 } 16 17 func validateCPURealtimeOptions(_ *config.Config) error { 18 return nil 19 }