From 4eb4c3013da3dbbfb59cfd7718f9161ba458451b Mon Sep 17 00:00:00 2001 From: Michael Shalayeff Date: Fri, 18 Jun 1999 05:20:00 +0000 Subject: do not include fpu regs into trapframe, according to the lazy fpu context switching it could be well saved into pcb. this brings trapframe to 256 bytes (including 5 spare words). adjust all the code to deal w/ moved fpu regs save area. --- sys/arch/hppa/include/frame.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/arch/hppa/include') diff --git a/sys/arch/hppa/include/frame.h b/sys/arch/hppa/include/frame.h index 24504a637e5..3db91df4b81 100644 --- a/sys/arch/hppa/include/frame.h +++ b/sys/arch/hppa/include/frame.h @@ -1,4 +1,4 @@ -/* $OpenBSD: frame.h,v 1.5 1999/04/20 19:49:35 mickey Exp $ */ +/* $OpenBSD: frame.h,v 1.6 1999/06/18 05:19:59 mickey Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -127,7 +127,7 @@ struct trapframe { u_int tf_vtop; /* cr25 */ u_int tf_tr2; /* cr26 */ - u_int64_t tf_fpregs[HPPA_NFPREGS]; + u_int tf_pad[5]; /* pad to 256 bytes */ }; #endif /* !_LOCORE */ -- cgit v1.2.3