diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-04-25 21:21:03 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-04-25 21:21:03 +0000 |
commit | 3359f9df87afe1ba911626314803d08996db40a6 (patch) | |
tree | d5e58c7e082b208c1d652dc410caf9b7b43e4176 /sys/arch | |
parent | 266558fdf176283b5b5827e93cbccca492243b88 (diff) |
cpu_busy_cycle_fcn callback has never been used
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/machdep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c index f18e5bc7561..5062679137f 100644 --- a/sys/arch/amd64/amd64/machdep.c +++ b/sys/arch/amd64/amd64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.209 2015/04/18 22:16:21 kettenis Exp $ */ +/* $OpenBSD: machdep.c,v 1.210 2015/04/25 21:21:02 guenther Exp $ */ /* $NetBSD: machdep.c,v 1.3 2003/05/07 22:58:18 fvdl Exp $ */ /*- @@ -155,7 +155,6 @@ char machine[] = MACHINE; void (*cpu_idle_leave_fcn)(void) = NULL; void (*cpu_idle_cycle_fcn)(void) = NULL; void (*cpu_idle_enter_fcn)(void) = NULL; -void (*cpu_busy_cycle_fcn)(void) = NULL; /* the following is used externally for concurrent handlers */ int setperf_prio = 0; |