Staging
v0.5.1
https://github.com/git/git
Revision 88fcc52e4468d5dfef4f50d2bdee4b168a855368 authored by Junio C Hamano on 15 December 2010, 19:19:11 UTC, committed by Junio C Hamano on 15 December 2010, 19:19:11 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3017ed6
Raw File
Tip revision: 88fcc52e4468d5dfef4f50d2bdee4b168a855368 authored by Junio C Hamano on 15 December 2010, 19:19:11 UTC
Git 1.6.4.5
Tip revision: 88fcc52
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