diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-06-18 05:20:00 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-06-18 05:20:00 +0000 |
commit | 4eb4c3013da3dbbfb59cfd7718f9161ba458451b (patch) | |
tree | 667b0caf3a11523bbee3c70fbe0f31e5ea60cada /sys/arch/hppa/include | |
parent | 369be544ad57d1e2de923a2f1d75c994f4f385c2 (diff) |
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.
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/frame.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |