ef21ae46d9
Signed-off-by: Jaroslaw Pelczar <jarek@jpelczar.com> Change-Id: I545722b4f499addf7be557d85ee90f9847f3bcd7 Reviewed-on: https://review.haiku-os.org/c/haiku/+/1804 Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
30 lines
454 B
C
30 lines
454 B
C
/*
|
|
* Copyright 2019 Haiku, Inc. All Rights Reserved.
|
|
* 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_ */
|