blob: 138b20f54b4017c1f38036935f483c628094affb [file] [log] [blame]
Jeff King4a16d072009-01-22 01:02:35 -05001#ifndef SIGCHAIN_H
2#define SIGCHAIN_H
3
4typedef void (*sigchain_fun)(int);
5
6int sigchain_push(int sig, sigchain_fun f);
7int sigchain_pop(int sig);
8
Jeff King57b235a2009-01-22 01:03:08 -05009void sigchain_push_common(sigchain_fun f);
Stefan Bellerbfb6b532015-12-15 16:04:09 -080010void sigchain_pop_common(void);
Jeff King57b235a2009-01-22 01:03:08 -050011
Jeff King4a16d072009-01-22 01:02:35 -050012#endif /* SIGCHAIN_H */