Revision 4cc676c46cf07d0302d36e4aea9ecf847510383e authored by Junio C Hamano on 10 January 2018, 22:01:25 UTC, committed by Junio C Hamano on 10 January 2018, 22:01:25 UTC
A hotfix for a recent update that broke 'git bisect'.

* ma/bisect-leakfix:
  bisect: fix a regression causing a segfault
2 parent s bc4efaf + 2e9fdc7
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