summaryrefslogtreecommitdiff
path: root/t/helper/test-sigchain.c
blob: d013bccddaebd9c7fb0eb4b4c4e1be0643f82260 (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
#include "test-tool.h"
#include "cache.h"
#include "sigchain.h"
 
#define X(f) \
static void f(int sig) { \
	puts(#f); \
	fflush(stdout); \
	sigchain_pop(sig); \
	raise(sig); \
}
X(one)
X(two)
X(three)
#undef X
 
int cmd__sigchain(int argc, const char **argv)
{
	sigchain_push(SIGTERM, one);
	sigchain_push(SIGTERM, two);
	sigchain_push(SIGTERM, three);
	raise(SIGTERM);
	return 0;
}