Staging
v0.5.1
Revision 6b82d3eea625d83af067dc0ed57e361711cfb8b7 authored by Johannes Schindelin on 29 January 2021, 18:13:11 UTC, committed by Johannes Schindelin on 12 February 2021, 14:47:02 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 22539ec
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