From owner-svn-doc-all@FreeBSD.ORG Wed Apr 16 14:05:35 2014 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9D0BDE2; Wed, 16 Apr 2014 14:05:35 +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 9C74113B7; Wed, 16 Apr 2014 14:05:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3GE5ZW2051353; Wed, 16 Apr 2014 14:05:35 GMT (envelope-from dru@svn.freebsd.org) Received: (from dru@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3GE5ZNh051352; Wed, 16 Apr 2014 14:05:35 GMT (envelope-from dru@svn.freebsd.org) Message-Id: <201404161405.s3GE5ZNh051352@svn.freebsd.org> From: Dru Lavigne Date: Wed, 16 Apr 2014 14:05:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r44577 - head/en_US.ISO8859-1/books/handbook/dtrace 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.17 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: Wed, 16 Apr 2014 14:05:35 -0000 Author: dru Date: Wed Apr 16 14:05:35 2014 New Revision: 44577 URL: http://svnweb.freebsd.org/changeset/doc/44577 Log: White space fix only. Translators can ignore. Sponsored by: iXsystems Modified: head/en_US.ISO8859-1/books/handbook/dtrace/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/dtrace/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/dtrace/chapter.xml Wed Apr 16 14:01:55 2014 (r44576) +++ head/en_US.ISO8859-1/books/handbook/dtrace/chapter.xml Wed Apr 16 14:05:35 2014 (r44577) @@ -243,9 +243,9 @@ options DEBUG=-g hotkernel and procsystime scripts. - The hotkernel script is designed to identify - which function is using the most kernel time. It - will produce output similar to the following: + The hotkernel script is designed to + identify which function is using the most kernel time. It will + produce output similar to the following: &prompt.root; cd /usr/share/dtrace/toolkit &prompt.root; ./hotkernel @@ -314,13 +314,14 @@ kernel seriously obvious. It is 5AM btw. --> The procsystime script captures and - prints the system call time usage for a given process ID - (PID) or process name. In the following - example, a new instance of /bin/csh was - spawned. Then, procsystime was executed and - remained waiting while a few commands were typed on the other - incarnation of csh. These are the results of - this test: + prints the system call time usage for a given process + ID (PID) or process name. + In the following example, a new instance of + /bin/csh was spawned. Then, + procsystime was executed and remained + waiting while a few commands were typed on the other incarnation + of csh. These are the results of this + test: &prompt.root; ./procsystime -n csh Tracing... Hit Ctrl-C to end... @@ -348,8 +349,8 @@ Elapsed Times for processes csh, sigsuspend 6985124 read 3988049784 - As shown, the read() system call - used the most time in nanoseconds while the + As shown, the read() system call used + the most time in nanoseconds while the getpid() system call used the least amount of time.