Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _COMPAT_SIGNAL_H
0003 #define _COMPAT_SIGNAL_H
0004 
0005 #include <linux/compat.h>
0006 #include <asm/signal.h>
0007 
0008 #ifdef CONFIG_COMPAT
0009 struct __new_sigaction32 {
0010     unsigned int        sa_handler;
0011     unsigned int        sa_flags;
0012     unsigned int        sa_restorer;     /* not used by Linux/SPARC yet */
0013     compat_sigset_t     sa_mask;
0014 };
0015 
0016 struct __old_sigaction32 {
0017     unsigned int        sa_handler;
0018     compat_old_sigset_t     sa_mask;
0019     unsigned int        sa_flags;
0020     unsigned int        sa_restorer;     /* not used by Linux/SPARC yet */
0021 };
0022 #endif
0023 
0024 #endif /* !(_COMPAT_SIGNAL_H) */