Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 5bda18c186e455f8e65f976d3bf333ab1f4b5b53 authored by Junio C Hamano on 07 April 2013, 22:27:23 UTC
Git 1.8.2.1
Tip revision: 5bda18c
test-sigchain.c
#include "sigchain.h"
#include "cache.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 main(int argc, char **argv) {
	sigchain_push(SIGTERM, one);
	sigchain_push(SIGTERM, two);
	sigchain_push(SIGTERM, three);
	raise(SIGTERM);
	return 0;
}
back to top