Staging
v0.5.1
https://github.com/git/git
Revision 304852fc77847e649c746db95e9c4675c03ee567 authored by Junio C Hamano on 01 August 2013, 19:01:53 UTC, committed by Junio C Hamano on 01 August 2013, 19:01:53 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent d50cb75
Raw File
Tip revision: 304852fc77847e649c746db95e9c4675c03ee567 authored by Junio C Hamano on 01 August 2013, 19:01:53 UTC
Git 1.8.4-rc1
Tip revision: 304852f
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