Staging
v0.5.1
https://github.com/git/git
Revision bc1bbe0c19a6ff39522b4fa3259f34150e308e1f authored by Junio C Hamano on 13 November 2011, 06:14:53 UTC, committed by Junio C Hamano on 13 November 2011, 06:14:53 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent dc865af
Raw File
Tip revision: bc1bbe0c19a6ff39522b4fa3259f34150e308e1f authored by Junio C Hamano on 13 November 2011, 06:14:53 UTC
Git 1.7.8-rc2
Tip revision: bc1bbe0
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