From owner-svn-doc-all@FreeBSD.ORG Tue Jan 13 19:23:18 2015 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C75370C; Tue, 13 Jan 2015 19:23:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DED8E9D; Tue, 13 Jan 2015 19:23:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0DJNIdB075737; Tue, 13 Jan 2015 19:23:18 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0DJNHND075735; Tue, 13 Jan 2015 19:23:17 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201501131923.t0DJNHND075735@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Tue, 13 Jan 2015 19:23:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r46198 - in head: en_US.ISO8859-1/books/arch-handbook/pci zh_CN.UTF-8/books/arch-handbook/pci X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jan 2015 19:23:18 -0000 Author: jhb Date: Tue Jan 13 19:23:17 2015 New Revision: 46198 URL: https://svnweb.freebsd.org/changeset/doc/46198 Log: Use 'struct thread' instead of 'd_thread_t' in example PCI driver. Modified: head/en_US.ISO8859-1/books/arch-handbook/pci/chapter.xml head/zh_CN.UTF-8/books/arch-handbook/pci/chapter.xml Modified: head/en_US.ISO8859-1/books/arch-handbook/pci/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/arch-handbook/pci/chapter.xml Tue Jan 13 15:45:27 2015 (r46197) +++ head/en_US.ISO8859-1/books/arch-handbook/pci/chapter.xml Tue Jan 13 19:23:17 2015 (r46198) @@ -75,7 +75,7 @@ static struct cdevsw mypci_cdevsw = { */ int -mypci_open(struct cdev *dev, int oflags, int devtype, d_thread_t *td) +mypci_open(struct cdev *dev, int oflags, int devtype, struct thread *td) { struct mypci_softc *sc; @@ -86,7 +86,7 @@ mypci_open(struct cdev *dev, int oflags, } int -mypci_close(struct cdev *dev, int fflag, int devtype, d_thread_t *td) +mypci_close(struct cdev *dev, int fflag, int devtype, struct thread *td) { struct mypci_softc *sc; Modified: head/zh_CN.UTF-8/books/arch-handbook/pci/chapter.xml ============================================================================== --- head/zh_CN.UTF-8/books/arch-handbook/pci/chapter.xml Tue Jan 13 15:45:27 2015 (r46197) +++ head/zh_CN.UTF-8/books/arch-handbook/pci/chapter.xml Tue Jan 13 19:23:17 2015 (r46198) @@ -80,7 +80,7 @@ static struct cdevsw mypci_cdevsw = { */ int -mypci_open(struct cdev *dev, int oflags, int devtype, d_thread_t *td) +mypci_open(struct cdev *dev, int oflags, int devtype, struct thread *td) { struct mypci_softc *sc; @@ -91,7 +91,7 @@ mypci_open(struct cdev *dev, int oflags, } int -mypci_close(struct cdev *dev, int fflag, int devtype, d_thread_t *td) +mypci_close(struct cdev *dev, int fflag, int devtype, struct thread *td) { struct mypci_softc *sc;