Revision c049b61d42bbdbe5bf938c0fc13ad09970a945df authored by Nguyễn Thái Ngọc Duy on 13 March 2014, 11:45:31 UTC, committed by Junio C Hamano on 13 March 2014, 17:54:21 UTC
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a2036d7
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