summaryrefslogtreecommitdiff
path: root/src/lib/syscall/signal_amd64_darwin.go
blob: 892255eea8411276dc5f2045b1973311f9756b3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2009 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Generated by mksignal; DO NOT EDIT.
// mksignal /usr/include/sys/signal.h

package syscall

export const(
	SIGHUP = 1;
	SIGINT = 2;
	SIGQUIT = 3;
	SIGILL = 4;
	SIGTRAP = 5;
	SIGABRT = 6;
	SIGPOLL = 7;
	SIGEMT = 7;
	SIGFPE = 8;
	SIGKILL = 9;
	SIGBUS = 10;
	SIGSEGV = 11;
	SIGSYS = 12;
	SIGPIPE = 13;
	SIGALRM = 14;
	SIGTERM = 15;
	SIGURG = 16;
	SIGSTOP = 17;
	SIGTSTP = 18;
	SIGCONT = 19;
	SIGCHLD = 20;
	SIGTTIN = 21;
	SIGTTOU = 22;
	SIGIO = 23;
	SIGXCPU = 24;
	SIGXFSZ = 25;
	SIGVTALRM = 26;
	SIGPROF = 27;
	SIGWINCH = 28;
	SIGINFO = 29;
	SIGUSR1 = 30;
	SIGUSR2 = 31;
)