Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: d2446dfd7f3b3f8948142cfb07a0270e2497d93f authored by Junio C Hamano on 27 November 2013, 20:14:45 UTC
Git 1.8.5
Tip revision: d2446df
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