daemon_freebsd.go 466 B

12345678910111213141516171819
  1. package main
  2. import "github.com/docker/docker/daemon/config"
  3. // preNotifyReady sends a message to the host when the API is active, but before the daemon is
  4. func preNotifyReady() {
  5. }
  6. // notifyReady sends a message to the host when the server is ready to be used
  7. func notifyReady() {
  8. }
  9. // notifyStopping sends a message to the host when the server is shutting down
  10. func notifyStopping() {
  11. }
  12. func validateCPURealtimeOptions(_ *config.Config) error {
  13. return nil
  14. }