Black Lives Matter. Support the Equal Justice Initiative.

Source file src/cmd/go/internal/base/signal_notunix.go

Documentation: cmd/go/internal/base

     1  // Copyright 2012 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 base
     9  
    10  import (
    11  	"os"
    12  )
    13  
    14  var signalsToIgnore = []os.Signal{os.Interrupt}
    15  
    16  // SignalTrace is the signal to send to make a Go program
    17  // crash with a stack trace (no such signal in this case).
    18  var SignalTrace os.Signal = nil
    19  

View as plain text