Skip to content
Snippets Groups Projects
Commit 80b8382c authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix aarch64 kfx size

parent 82ac7a66
No related branches found
No related tags found
No related merge requests found
...@@ -18,8 +18,8 @@ use crate::syscall::FloatRegisters; ...@@ -18,8 +18,8 @@ use crate::syscall::FloatRegisters;
/// This must be done, as no locks can be held on the stack during switch /// This must be done, as no locks can be held on the stack during switch
pub static CONTEXT_SWITCH_LOCK: AtomicBool = AtomicBool::new(false); pub static CONTEXT_SWITCH_LOCK: AtomicBool = AtomicBool::new(false);
//TODO: find out ideal size // 512 bytes for registers, extra bytes for fpcr and fpsr
pub const KFX_SIZE: usize = 512; pub const KFX_SIZE: usize = 1024;
pub const KFX_ALIGN: usize = 16; pub const KFX_ALIGN: usize = 16;
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment