summaryrefslogtreecommitdiff
path: root/src/signal/struct_sigevent.h
blob: ac0713f9b5b438d6b08fafdd124fcd593cddc00f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <signal.h>

struct sigevent {
	int sigev_notify;
	int sigev_signo;
	union sigval sigev_value;
	void (*sigev_notify_function)(union sigval);
	pthread_attr_t *siegev_notify_attributes;
};

/*
POSIX(199309)
*/