Staging
v0.5.1
https://github.com/git/git
Revision 234cd45662d5c094339d729bc040ae90ae688de7 authored by Junio C Hamano on 08 October 2012, 18:40:43 UTC, committed by Junio C Hamano on 08 October 2012, 18:40:43 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ff5702c
Raw File
Tip revision: 234cd45662d5c094339d729bc040ae90ae688de7 authored by Junio C Hamano on 08 October 2012, 18:40:43 UTC
Git 1.7.12.3
Tip revision: 234cd45
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