/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASMARM_SIGCONTEXT_H #define _ASMARM_SIGCONTEXT_H
/* * Signal context structure - contains all info to do with the state * before the signal handler was invoked. Note: only add new entries * to the end of the structure.
*/ struct sigcontext { unsignedlong trap_no; unsignedlong error_code; unsignedlong oldmask; unsignedlong arm_r0; unsignedlong arm_r1; unsignedlong arm_r2; unsignedlong arm_r3; unsignedlong arm_r4; unsignedlong arm_r5; unsignedlong arm_r6; unsignedlong arm_r7; unsignedlong arm_r8; unsignedlong arm_r9; unsignedlong arm_r10; unsignedlong arm_fp; unsignedlong arm_ip; unsignedlong arm_sp; unsignedlong arm_lr; unsignedlong arm_pc; unsignedlong arm_cpsr; unsignedlong fault_address;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.