mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 01:08:03 -04:00
10 lines
192 B
C
10 lines
192 B
C
#ifndef __PERF_SIGCHAIN_H
|
|
#define __PERF_SIGCHAIN_H
|
|
|
|
typedef void (*sigchain_fun)(int);
|
|
|
|
int sigchain_pop(int sig);
|
|
|
|
void sigchain_push_common(sigchain_fun f);
|
|
|
|
#endif /* __PERF_SIGCHAIN_H */
|