Revision 2d1a5a5856692d839531b8963188b3bdc13f4efa authored by Junio C Hamano on 08 April 2014, 19:08:59 UTC, committed by Junio C Hamano on 08 April 2014, 19:08:59 UTC
* maint:
  Update draft release notes to 1.9.2
2 parent s 967f8c9 + 4d7ad08
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