summaryrefslogtreecommitdiff
path: root/src/signal/siginfo_t.h
blob: 39c0b19ad2b69fa7ed2b1fd0dfd77ca387d5a607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <signal.h>

typedef struct {
	int si_signo;
	int si_code;
	pid_t si_pid;
	uid_t si_uid;
	void *si_addr;
	int si_status;
	long si_band;
	int si_errno;
	union sigval si_value;
} siginfo_t;

/*
XOPEN(400)
POSIX(199309)
*/