blob: 959d64eb5557fe69ef13a1b1d2adb7402bc7d807 [file] [log] [blame]
John Kacur8b40f522009-09-24 18:02:18 +02001#ifndef __PERF_SIGCHAIN_H
2#define __PERF_SIGCHAIN_H
Ingo Molnara930d2c2009-05-27 09:50:13 +02003
4typedef void (*sigchain_fun)(int);
5
Ingo Molnara930d2c2009-05-27 09:50:13 +02006int sigchain_pop(int sig);
7
8void sigchain_push_common(sigchain_fun f);
9
John Kacur8b40f522009-09-24 18:02:18 +020010#endif /* __PERF_SIGCHAIN_H */