diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-17 19:52:28 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-17 19:52:28 +0000 |
commit | 60507fc96e456912e170f2d314dd70f884b5aeb8 (patch) | |
tree | b83b6259041ee06735f8c73b757f1e8debc3b6e7 /sys/arch/sparc64/include | |
parent | dc91fc42a77afeef014bc99ae83a45521bc45f46 (diff) |
Really try to schedule clock ticks at fixed intervals. Make sure hardclock()
gets called for every clock tick, even if we miss one.
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 608333983a4..59c938281aa 100644 --- a/sys/arch/sparc64/include/cpu.h +++ b/sys/arch/sparc64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.60 2008/04/13 16:32:55 kettenis Exp $ */ +/* $OpenBSD: cpu.h,v 1.61 2008/04/17 19:52:27 kettenis Exp $ */ /* $NetBSD: cpu.h,v 1.28 2001/06/14 22:56:58 thorpej Exp $ */ /* @@ -124,6 +124,7 @@ struct cpu_info { int ci_want_resched; int ci_handled_intr_level; void *ci_intrpending[16][8]; + u_int64_t ci_tick; /* DEBUG/DIAGNOSTIC stuff */ u_long ci_spin_locks; /* # of spin locks held */ |