From 61e61bcfd30452a4f7e18fa01f2f334130f6a7d4 Mon Sep 17 00:00:00 2001 From: Filipe Regadas Date: Wed, 23 Mar 2022 14:57:20 -0400 Subject: [PATCH] Fix darwin build (#1) --- pkg/signals/signal_darwin.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pkg/signals/signal_darwin.go diff --git a/pkg/signals/signal_darwin.go b/pkg/signals/signal_darwin.go new file mode 100644 index 0000000000..3a6c32ac29 --- /dev/null +++ b/pkg/signals/signal_darwin.go @@ -0,0 +1,27 @@ +//go:build darwin +// +build darwin + +/* +Copyright 2021 The Volcano Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package signals + +import ( + "os" + "syscall" +) + +var shutdownSignals = []os.Signal{os.Interrupt, syscall.SIGTERM}