diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-04-29 12:35:15 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-04-29 12:35:15 +0000 |
commit | 755b8d9f7185470dff6d8434319505d00c1137f8 (patch) | |
tree | 499b61fb3dfc5a656b002a973bff75ecade3cd07 /sys/arch/hppa/include | |
parent | 23c1ea05f4ae6acb3e67573d05298993f54af4c0 (diff) |
Store hardware timer information per CPU.
ok kettenis@
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/cpu.h b/sys/arch/hppa/include/cpu.h index c057c79c8d2..c4b924c2b38 100644 --- a/sys/arch/hppa/include/cpu.h +++ b/sys/arch/hppa/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.67 2010/04/19 16:32:53 jsing Exp $ */ +/* $OpenBSD: cpu.h,v 1.68 2010/04/29 12:35:14 jsing Exp $ */ /* * Copyright (c) 2000-2004 Michael Shalayeff @@ -80,6 +80,7 @@ struct cpu_info { volatile u_long ci_ipending; volatile int ci_in_intr; int ci_want_resched; + u_long ci_itmr; struct schedstate_percpu ci_schedstate; u_int32_t ci_randseed; |