diff options
author | 2015-04-25 21:21:02 +0000 | |
---|---|---|
committer | 2015-04-25 21:21:02 +0000 | |
commit | 6c726d70e1fd6c8344e6b9e201375883821f1c68 (patch) | |
tree | 2529dbd11cfcd165593ea9691a504af43aefd559 | |
parent | Only print MIME warnings when warnings are enabled. (diff) | |
download | wireguard-openbsd-6c726d70e1fd6c8344e6b9e201375883821f1c68.tar.xz wireguard-openbsd-6c726d70e1fd6c8344e6b9e201375883821f1c68.zip |
cpu_busy_cycle_fcn callback has never been used
-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; |