Skip to content
Snippets Groups Projects
Select Git revision
  • a439fe51a1f8eb087c22dd24d69cebae4a3addac
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

compat_signal.h

Blame
  • compat_signal.h 611 B
    #ifndef _COMPAT_SIGNAL_H
    #define _COMPAT_SIGNAL_H
    
    #include <linux/compat.h>
    #include <asm/signal.h>
    
    #ifdef CONFIG_COMPAT
    struct __new_sigaction32 {
    	unsigned		sa_handler;
    	unsigned int    	sa_flags;
    	unsigned		sa_restorer;     /* not used by Linux/SPARC yet */
    	compat_sigset_t 	sa_mask;
    };
    
    struct __old_sigaction32 {
    	unsigned		sa_handler;
    	compat_old_sigset_t  	sa_mask;
    	unsigned int    	sa_flags;
    	unsigned		sa_restorer;     /* not used by Linux/SPARC yet */
    };
    
    typedef struct sigaltstack32 {
    	u32			ss_sp;
    	int			ss_flags;
    	compat_size_t		ss_size;
    } stack_t32;
    #endif
    
    #endif /* !(_COMPAT_SIGNAL_H) */