svn commit: r298386 - head/share/dtrace

George V. Neville-Neil gnn at FreeBSD.org
Thu Apr 21 03:17:55 UTC 2016


Author: gnn
Date: Thu Apr 21 03:17:53 2016
New Revision: 298386
URL: https://svnweb.freebsd.org/changeset/base/298386

Log:
  Add the address at which the routine returned.
  
  MFC after:	1 week
  Sponsored by:	Rubicon Communications (Netgate)

Modified:
  head/share/dtrace/retval

Modified: head/share/dtrace/retval
==============================================================================
--- head/share/dtrace/retval	Wed Apr 20 23:56:25 2016	(r298385)
+++ head/share/dtrace/retval	Thu Apr 21 03:17:53 2016	(r298386)
@@ -37,6 +37,6 @@
 #pragma D option quiet
 
 fbt::$1:return {
-	printf("%s %d\n", probefunc, arg1);
+	printf("%s+0x%x returned %d\n", probefunc, arg0, arg1);
 }
 


More information about the svn-src-head mailing list