github.com/tencent/goom@v1.0.1/internal/hack/signal_notunix.go (about)

     1  // Copyright 2021 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build plan9 || windows
     6  // +build plan9 windows
     7  
     8  package hack
     9  
    10  import (
    11  	"os"
    12  )
    13  
    14  // signalsToIgnore ignore the quit signal
    15  var SignalsToIgnore = []os.Signal{os.Interrupt}