svn commit: r279765 - head/share/dtrace

George V. Neville-Neil gnn at FreeBSD.org
Sun Mar 8 02:47:39 UTC 2015


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]);
 }


More information about the svn-src-head mailing list