github.com/afumu/libc@v0.0.6/signal/more_netbsd_arm.go (about)

     1  // Copyright 2020 The Libc 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  package signal
     6  
     7  const (
     8  	// sys/sys/signal.h:139:#define	SIG_DFL		((__sighandler_t *)0)
     9  	SIG_DFL = 0
    10  	// sys/sys/signal.h:140:#define	SIG_IGN		((__sighandler_t *)1)
    11  	SIG_IGN = 1
    12  )