https://github.com/git/git
Raw File
Tip revision: c524ceb12f65e2ad4fc68c9d5b39f6e4b6b5c17b authored by Junio C Hamano on 27 February 2012, 00:40:20 UTC
Git 1.7.8.5
Tip revision: c524ceb
sigchain.h
#ifndef SIGCHAIN_H
#define SIGCHAIN_H

typedef void (*sigchain_fun)(int);

int sigchain_push(int sig, sigchain_fun f);
int sigchain_pop(int sig);

void sigchain_push_common(sigchain_fun f);

#endif /* SIGCHAIN_H */
back to top