Staging
v0.5.1
https://github.com/git/git
Revision e5af0de202e885b793482d416b8ce9d50dd2b8bc authored by Junio C Hamano on 01 June 2011, 21:08:26 UTC, committed by Junio C Hamano on 01 June 2011, 21:08:26 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1c6e351
Raw File
Tip revision: e5af0de202e885b793482d416b8ce9d50dd2b8bc authored by Junio C Hamano on 01 June 2011, 21:08:26 UTC
Git 1.7.5.4
Tip revision: e5af0de
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