Skip to content
Snippets Groups Projects
sigcontext.h 237 B
Newer Older
  • Learn to ignore specific revisions
  • Wolfgang Denk's avatar
    Wolfgang Denk committed
    #ifndef _ASM_PPC_SIGCONTEXT_H
    #define _ASM_PPC_SIGCONTEXT_H
    
    #include <asm/ptrace.h>
    
    
    struct sigcontext_struct {
    	unsigned long	_unused[4];
    	int		signal;
    	unsigned long	handler;
    	unsigned long	oldmask;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	struct pt_regs	*regs;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    };
    
    #endif