Revision 6e97ef31ce20ff93a4cc0e3c6ab5171fd6dda5f3 authored by Junio C Hamano on 05 January 2011, 22:49:19 UTC, committed by Junio C Hamano on 05 January 2011, 22:49:19 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9d9f5e7
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);

#endif /* SIGCHAIN_H */
back to top