Преглед изворни кода

aarch64: add struct _aarch64_ctx to signal.h

The unwind code in libgcc uses this type for unwinding across signal
handlers. On aarch64 the kernel may place a sequence of structs on the
signal stack on top of the ucontext to provide additional information.
The unwinder only needs the header, but added all the types the kernel
currently defines for this mechanism because they are part of the uapi.
Szabolcs Nagy пре 10 година
родитељ
комит
38bf2d7cc3
1 измењених фајлова са 17 додато и 0 уклоњено
  1. 17 0
      arch/aarch64/bits/signal.h

+ 17 - 0
arch/aarch64/bits/signal.h

@@ -17,6 +17,23 @@ typedef struct sigcontext
 	unsigned long sp, pc, pstate;
 	long double __reserved[256];
 } mcontext_t;
+
+#define FPSIMD_MAGIC 0x46508001
+#define ESR_MAGIC 0x45535201
+struct _aarch64_ctx {
+	unsigned int magic;
+	unsigned int size;
+};
+struct fpsimd_context {
+	struct _aarch64_ctx head;
+	unsigned int fpsr;
+	unsigned int fpcr;
+	long double vregs[32];
+};
+struct esr_context {
+	struct _aarch64_ctx head;
+	unsigned long esr;
+};
 #else
 typedef struct {
 	long double __regs[18+256];