Staging
v0.5.1
https://github.com/git/git
Revision 509d59705ee07094bcc56b49a17ba0ae983da50f authored by Junio C Hamano on 06 September 2011, 18:41:02 UTC, committed by Junio C Hamano on 06 September 2011, 18:41:02 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 5a277f3
Raw File
Tip revision: 509d59705ee07094bcc56b49a17ba0ae983da50f authored by Junio C Hamano on 06 September 2011, 18:41:02 UTC
Git 1.7.6.2
Tip revision: 509d597
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