Staging
v0.5.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: 7d722536dd86b5fbd0c0434bfcea5588132ee6ad authored by Junio C Hamano on 10 December 2015, 20:59:37 UTC
Git 2.7-rc0
Tip revision: 7d72253
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