haiku/headers/posix/arch/arm64/signal.h
Jaroslaw Pelczar 1f52c921e2 ARM64: Initial changes so we can compile GCC toolchain
Signed-off-by: Jaroslaw Pelczar <jarek@jpelczar.com>
Change-Id: I0859d0619d601efd003472e2846d2f980ee2e457
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1799
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2019-08-30 19:05:16 +00:00

30 lines
459 B
C

/*
* Copyright 2017 Jaroslaw Pelczar <jarek@jpelczar.com>
* Distributed under the terms of the MIT License.
*/
#ifndef _ARCH_SIGNAL_H_
#define _ARCH_SIGNAL_H_
/*
* Architecture-specific structure passed to signal handlers
*/
#if defined(__aarch64__)
struct vregs
{
ulong x[30];
ulong lr;
ulong sp;
ulong elr;
ulong spsr;
__uint128_t fp_q[32];
u_int fpsr;
u_int fpcr;
};
#endif /* defined(__aarch64__) */
#endif /* _ARCH_SIGNAL_H_ */