Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Mar 2015 02:47:39 +0000 (UTC)
From:      "George V. Neville-Neil" <gnn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r279765 - head/share/dtrace
Message-ID:  <201503080247.t282ldw8028578@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gnn
Date: Sun Mar  8 02:47:38 2015
New Revision: 279765
URL: https://svnweb.freebsd.org/changeset/base/279765

Log:
  Summary: Remove the pid printing which does not currently work.

Modified:
  head/share/dtrace/tcpstate

Modified: head/share/dtrace/tcpstate
==============================================================================
--- head/share/dtrace/tcpstate	Sun Mar  8 02:13:46 2015	(r279764)
+++ head/share/dtrace/tcpstate	Sun Mar  8 02:47:38 2015	(r279765)
@@ -41,6 +41,6 @@ tcp:kernel::state-change
 {
 	newstate = args[3]->tcps_state;
 	oldstate = args[5]->tcps_state;
-	printf("%d %s\t\t%s\n", args[1]->pid, tcp_state_string[oldstate],
+	printf("%s\t\t%s\n", tcp_state_string[oldstate],
 			     tcp_state_string[newstate]);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503080247.t282ldw8028578>