Staging
v0.5.1
https://github.com/git/git
Revision dd34b6be8a3e869f3e0d62a13115f02d90cf4f80 authored by Junio C Hamano on 03 September 2010, 16:38:53 UTC, committed by Junio C Hamano on 03 September 2010, 16:38:53 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent e78d01b
Raw File
Tip revision: dd34b6be8a3e869f3e0d62a13115f02d90cf4f80 authored by Junio C Hamano on 03 September 2010, 16:38:53 UTC
Git 1.7.2.3
Tip revision: dd34b6b
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