git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
11 lines
198 B
C
11 lines
198 B
C
#ifndef __SUBCMD_SIGCHAIN_H
|
|
#define __SUBCMD_SIGCHAIN_H
|
|
|
|
typedef void (*sigchain_fun)(int);
|
|
|
|
int sigchain_pop(int sig);
|
|
|
|
void sigchain_push_common(sigchain_fun f);
|
|
|
|
#endif /* __SUBCMD_SIGCHAIN_H */
|