Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __SUBCMD_SIGCHAIN_H
0003 #define __SUBCMD_SIGCHAIN_H
0004 
0005 typedef void (*sigchain_fun)(int);
0006 
0007 int sigchain_pop(int sig);
0008 
0009 void sigchain_push_common(sigchain_fun f);
0010 
0011 #endif /* __SUBCMD_SIGCHAIN_H */