summaryrefslogtreecommitdiff
path: root/sys/arch/hppa
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1999-06-22 18:01:13 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1999-06-22 18:01:13 +0000
commitc17d3d971905b9475f5a2b53e68eef06afe384a8 (patch)
tree5c06cc01b2236c637ee13f3df44a641ba4f8fea3 /sys/arch/hppa
parentc282e9690f0da43c700536b79ef486c224c50d96 (diff)
this change somehow escaped the fpregs commit
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r--sys/arch/hppa/include/pcb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/pcb.h b/sys/arch/hppa/include/pcb.h
index a1a9f502a11..e50eff429bd 100644
--- a/sys/arch/hppa/include/pcb.h
+++ b/sys/arch/hppa/include/pcb.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcb.h,v 1.3 1999/04/20 19:46:22 mickey Exp $ */
+/* $OpenBSD: pcb.h,v 1.4 1999/06/22 18:01:12 mickey Exp $ */
#ifndef _MACHINE_PCB_H_
#define _MACHINE_PCB_H_
@@ -7,7 +7,7 @@
struct pcb {
struct trapframe pcb_tf;
- /* would be nice to align to cache line size here XXX */
+ u_int64_t pcb_fpregs[HPPA_NFPREGS]; /* not included above */
int (*pcb_onfault) __P((void)); /* SW copy fault handler */
pa_space_t pcb_space; /* copy pmap_space, for asm's sake */
};