github.com/sitano/gsysint@v0.0.0-20190607084937-69a4f3233e4e/g/signal_unix.go (about)

     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  // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
     6  
     7  package g
     8  
     9  // gsignalStack saves the fields of the gsignal stack changed by
    10  // setGsignalStack.
    11  type GSignalStack struct {
    12  	stack       Stack
    13  	stackguard0 uintptr
    14  	stackguard1 uintptr
    15  	stktopsp    uintptr
    16  }
    17