Revision 5eeeef3fe015513503b5ff58f5c799756e345422 authored by Junio C Hamano on 11 March 2019, 07:18:22 UTC, committed by Chojan Shang on 12 March 2019, 08:56:50 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 30a760b
Raw File
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