mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
Kernel/riscv64: Specify correct alignment for FPUState
struct
The signal handling code (and possibly other code as well) expects this struct to have an alignment of 16 bytes, as it pushes this struct on the stack.
This commit is contained in:
parent
7d757fefeb
commit
ac79ab0b45
1 changed files with 3 additions and 1 deletions
|
@ -13,7 +13,9 @@ VALIDATE_IS_RISCV64()
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
struct FPUState {
|
||||
// This struct will get pushed on the stack by the signal handling code.
|
||||
// Therefore, it has to be aligned to a 16-byte boundary.
|
||||
struct [[gnu::aligned(16)]] FPUState {
|
||||
u64 f[32];
|
||||
u64 fcsr;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue