Staging
v0.5.1
https://github.com/git/git
Revision 42e6fde5c28150206956ea4be490d886c4ecbd68 authored by Junio C Hamano on 22 September 2017, 05:49:24 UTC, committed by Junio C Hamano on 22 September 2017, 05:49:24 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1df0306
Raw File
Tip revision: 42e6fde5c28150206956ea4be490d886c4ecbd68 authored by Junio C Hamano on 22 September 2017, 05:49:24 UTC
Git 2.13.6
Tip revision: 42e6fde
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