Revision 5c0c220c53823e2a9ebe8e566e649ca30cd7e8e0 authored by Jiang Xin on 15 March 2016, 16:27:40 UTC, committed by Jiang Xin on 15 March 2016, 16:27:40 UTC
Update 1 new translations (2530t0f0u) for git v2.8.0-rc2.

Signed-off-by: Jiang Xin <worldhello.net@gmail.com>
1 parent a5a4168
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