https://github.com/git/git
Raw File
Tip revision: 21a3e5016bb218dc9b016284c88ba685bc446b70 authored by Junio C Hamano on 17 March 2020, 20:34:12 UTC
Git 2.18.3
Tip revision: 21a3e50
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);
void sigchain_pop_common(void);

#endif /* SIGCHAIN_H */
back to top