more_freebsd_arm.go 342 B

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