Staging
v0.5.1
https://github.com/git/git
Revision d9f5ef7a4a760d58f1f824f9fb8c12ef0371d3a9 authored by Junio C Hamano on 26 April 2012, 16:59:22 UTC, committed by Junio C Hamano on 26 April 2012, 17:14:45 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent aba5f57
Raw File
Tip revision: d9f5ef7a4a760d58f1f824f9fb8c12ef0371d3a9 authored by Junio C Hamano on 26 April 2012, 16:59:22 UTC
Git 1.7.8.6
Tip revision: d9f5ef7
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