Revision fd3aeeab0d41474af86e41d207196abbb7bf78f6 authored by Brian Bourn on 19 March 2014, 15:58:22 UTC, committed by Junio C Hamano on 19 March 2014, 18:49:39 UTC
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Brian Bourn <ba.bourn@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9daf0ef
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