https://github.com/git/git
Raw File
Tip revision: eea591373e139fc8aab89a78ccb0b1512a2bf0de authored by Junio C Hamano on 09 May 2014, 17:59:07 UTC
Git 1.9.3
Tip revision: eea5913
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