summaryrefslogtreecommitdiffstats
path: root/vendor/modernc.org/libc/signal/more_freebsd_arm64.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2022-11-27 00:42:16 +0100
committerGitHub <noreply@github.com>2022-11-27 00:42:16 +0100
commit4fd0a7672777f0ed15692ae2ba47838208537558 (patch)
treeb119834a8b9ee78aa8f1b2ad05efa7da50516cbf /vendor/modernc.org/libc/signal/more_freebsd_arm64.go
parent6da9d567dc9195e9a5211f23a6795a41f56a1bfc (diff)
downloadmatterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.tar.gz
matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.tar.bz2
matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.zip
Update dependencies (#1929)
Diffstat (limited to 'vendor/modernc.org/libc/signal/more_freebsd_arm64.go')
-rw-r--r--vendor/modernc.org/libc/signal/more_freebsd_arm64.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/modernc.org/libc/signal/more_freebsd_arm64.go b/vendor/modernc.org/libc/signal/more_freebsd_arm64.go
new file mode 100644
index 00000000..c1791b2a
--- /dev/null
+++ b/vendor/modernc.org/libc/signal/more_freebsd_arm64.go
@@ -0,0 +1,12 @@
+// Copyright 2020 The Libc Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package signal
+
+const (
+ // sys/sys/signal.h:139:#define SIG_DFL ((__sighandler_t *)0)
+ SIG_DFL = 0
+ // sys/sys/signal.h:140:#define SIG_IGN ((__sighandler_t *)1)
+ SIG_IGN = 1
+)