From owner-cvs-src@FreeBSD.ORG Fri Oct 24 22:03:26 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 0F28516A4B3; Fri, 24 Oct 2003 22:03:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E7CE43FAF; Fri, 24 Oct 2003 22:03:25 -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 h9P53PXJ061743; Fri, 24 Oct 2003 22:03:25 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9P53PUP061742; Fri, 24 Oct 2003 22:03:25 -0700 (PDT) (envelope-from njl) Message-Id: <200310250503.h9P53PUP061742@repoman.freebsd.org> From: Nate Lawson Date: Fri, 24 Oct 2003 22:03:25 -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/dev/acpica acpi.c acpi_acad.c acpi_button.c acpi_cmbat.c acpi_lid.c acpi_thermal.c acpivar.h src/etc devd.conf 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, 25 Oct 2003 05:03:26 -0000 njl 2003/10/24 22:03:25 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi.c acpi_acad.c acpi_button.c acpi_cmbat.c acpi_lid.c acpi_thermal.c acpivar.h etc devd.conf Log: Add devctl(4) notify support to ACPI. Various subsystems now notify userland whenever events occur. See the example in devd.conf below to see how to use it. Revision Changes Path 1.9 +26 -0 src/etc/devd.conf 1.106 +22 -0 src/sys/dev/acpica/acpi.c 1.20 +3 -1 src/sys/dev/acpica/acpi_acad.c 1.17 +4 -0 src/sys/dev/acpica/acpi_button.c 1.26 +2 -0 src/sys/dev/acpica/acpi_cmbat.c 1.15 +4 -2 src/sys/dev/acpica/acpi_lid.c 1.33 +2 -0 src/sys/dev/acpica/acpi_thermal.c 1.46 +2 -0 src/sys/dev/acpica/acpivar.h