diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-06-03 16:55:23 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-06-03 16:55:23 +0000 |
commit | 60d1cac5a8ccb212baadfb4a019297d5511c45fe (patch) | |
tree | b0aaa73f11b292d04c1b56668f70b07f26a4ddbc /sys/arch/sparc64 | |
parent | 6a7c51c766f42977082e7093a0f3c39681622300 (diff) |
Convert some internal APIs to use timespecs instead of timevals
ok matthew@ deraadt@
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/sparc64/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/cpu.c b/sys/arch/sparc64/sparc64/cpu.c index b1d9d3700a4..59501915ffa 100644 --- a/sys/arch/sparc64/sparc64/cpu.c +++ b/sys/arch/sparc64/sparc64/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.59 2012/12/04 21:00:21 kettenis Exp $ */ +/* $OpenBSD: cpu.c,v 1.60 2013/06/03 16:55:22 guenther Exp $ */ /* $NetBSD: cpu.c,v 1.13 2001/05/26 21:27:15 chs Exp $ */ /* @@ -736,7 +736,7 @@ cpu_hatch(void) sparc_membar(Sync); s = splhigh(); - microuptime(&ci->ci_schedstate.spc_runtime); + nanouptime(&ci->ci_schedstate.spc_runtime); splx(s); cpu_start_clock(); |