diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-09-30 21:34:21 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-09-30 21:34:21 +0000 |
commit | d5a801a8ee6cc9e40715e75f75d167ee9b1b72ac (patch) | |
tree | be9d4503c9a6572f54c245ace0f963970f29896c /sys/arch/sparc64/include | |
parent | 5c711d120324f0d3960ee6bd5e39e7e288fc6977 (diff) |
Move intrpending array into 'struct cpu_info'.
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r-- | sys/arch/sparc64/include/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/cpu.h b/sys/arch/sparc64/include/cpu.h index 09ca5f0bc0e..8aead008a57 100644 --- a/sys/arch/sparc64/include/cpu.h +++ b/sys/arch/sparc64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.45 2007/09/09 14:59:37 kettenis Exp $ */ +/* $OpenBSD: cpu.h,v 1.46 2007/09/30 21:34:20 kettenis Exp $ */ /* $NetBSD: cpu.h,v 1.28 2001/06/14 22:56:58 thorpej Exp $ */ /* @@ -119,6 +119,7 @@ struct cpu_info { int ci_want_resched; int ci_handled_intr_level; + void *ci_intrpending[16][8]; /* DEBUG/DIAGNOSTIC stuff */ u_long ci_spin_locks; /* # of spin locks held */ |