Staging
v0.5.1
https://github.com/git/git
Revision 4d06473928ee574910accbde05c19ef2263abdf6 authored by Junio C Hamano on 19 August 2013, 17:34:14 UTC, committed by Junio C Hamano on 19 August 2013, 17:34:14 UTC
As we had to revert two topics at the last minute, let's have
another (hopefully short) round of rc to make sure the final release
will be sound.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2c2b664
Raw File
Tip revision: 4d06473928ee574910accbde05c19ef2263abdf6 authored by Junio C Hamano on 19 August 2013, 17:34:14 UTC
Git 1.8.4-rc4
Tip revision: 4d06473
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