summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/include
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2010-06-29 00:50:41 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2010-06-29 00:50:41 +0000
commitee9fbb25fcfb3ae874851496be412c5ad521429e (patch)
treedeb7ea6e1e543cdfc117685fd48398deda8086b4 /sys/arch/hppa/include
parent1acc8b2a30f81c6375bb98f6a00963e71cad9e1a (diff)
Store pointer to process FPU state in struct cpu_info.
ok kettenis@
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r--sys/arch/hppa/include/cpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/cpu.h b/sys/arch/hppa/include/cpu.h
index 576b9189826..07868e52f3e 100644
--- a/sys/arch/hppa/include/cpu.h
+++ b/sys/arch/hppa/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.74 2010/06/03 15:48:58 jsing Exp $ */
+/* $OpenBSD: cpu.h,v 1.75 2010/06/29 00:50:40 jsing Exp $ */
/*
* Copyright (c) 2000-2004 Michael Shalayeff
@@ -84,6 +84,7 @@ struct cpu_info {
volatile int ci_flags;
struct proc *ci_curproc;
+ paddr_t ci_fpu_state; /* Process FPU state. */
paddr_t ci_stack;
register_t ci_psw; /* Processor Status Word. */