mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 05:50:48 +01:00
30 lines
455 B
C
30 lines
455 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(__arm64__)
|
|
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(__arm64__) */
|
|
|
|
|
|
#endif /* _ARCH_SIGNAL_H_ */
|