From owner-cvs-src@FreeBSD.ORG Sat Oct 18 15:25:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D60816A4B3; Sat, 18 Oct 2003 15:25:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0548943F3F; Sat, 18 Oct 2003 15:25:08 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9IMP7XJ059638; Sat, 18 Oct 2003 15:25:07 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9IMP7wP059637; Sat, 18 Oct 2003 15:25:07 -0700 (PDT) (envelope-from njl) Message-Id: <200310182225.h9IMP7wP059637@repoman.freebsd.org> From: Nate Lawson Date: Sat, 18 Oct 2003 15:25:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h src/sys/i386/i386 machdep.c src/sys/amd64/amd64 machdep.c src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Oct 2003 22:25:08 -0000 njl 2003/10/18 15:25:07 PDT FreeBSD src repository Modified files: sys/sys proc.h sys/i386/i386 machdep.c sys/amd64/amd64 machdep.c sys/ia64/ia64 machdep.c Log: Add the cpu_idle_hook() function pointer so that other idlers can be hooked at runtime. Make C1 sleep (e.g., HLT) be the default. This prepares the way for further ACPI sleep states. Revision Changes Path 1.594 +17 -9 src/sys/amd64/amd64/machdep.c 1.577 +17 -9 src/sys/i386/i386/machdep.c 1.159 +11 -2 src/sys/ia64/ia64/machdep.c 1.351 +1 -0 src/sys/sys/proc.h