1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 #ifndef _ASM_H8300_SIGCONTEXT_H 3 #define _ASM_H8300_SIGCONTEXT_H 4 5 struct sigcontext { 6 unsigned long sc_mask; /* old sigmask */ 7 unsigned long sc_usp; /* old user stack pointer */ 8 unsigned long sc_er0; 9 unsigned long sc_er1; 10 unsigned long sc_er2; 11 unsigned long sc_er3; 12 unsigned long sc_er4; 13 unsigned long sc_er5; 14 unsigned long sc_er6; 15 unsigned short sc_ccr; 16 unsigned long sc_pc; 17 }; 18 19 #endif