PERFORCE change 97233 for review

John Birrell jb at FreeBSD.org
Tue May 16 05:01:53 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=97233

Change 97233 by jb at jb_freebsd2 on 2006/05/16 05:00:34

	Add the Statically Defined Tracing (sdt) provider. I got that from 
	<http://docs.sun.com/app/docs/doc/817-6223/6mlkidlkd?a=view>.
	
	See, my browser renders the docs and I can read, even if I don't
	always agree with the design.
	
	Last time I worked for Computer Associates we had a developer who
	we used to refer to as the "angry developer" because his way of
	dealing with the world was to just crap all over people no matter
	what they did, what they said or how much they tried to modify 
	their behaviour to appease him. I never liked that and I eventually
	left because of that.
	
	So this commit message is dedicated to all the angry developers
	in the world (including those who work for Sun Microsystems). The 
	message I have for you all is: "get over it!"
	
	(Ah, I feel better now 8->)

Affected files ...

.. //depot/projects/dtrace/src/sys/modules/dtrace/Makefile#14 edit
.. //depot/projects/dtrace/src/sys/modules/dtrace/Makefile.inc#2 edit
.. //depot/projects/dtrace/src/sys/modules/dtrace/sdt/Makefile#1 add

Differences ...

==== //depot/projects/dtrace/src/sys/modules/dtrace/Makefile#14 (text+ko) ====

@@ -5,6 +5,7 @@
 
 SUBDIR=	dtrace \
 	profile \
+	sdt \
 	systrace
 
 .include <bsd.subdir.mk>

==== //depot/projects/dtrace/src/sys/modules/dtrace/Makefile.inc#2 (text+ko) ====

@@ -4,11 +4,13 @@
 	-kldload cyclic
 	-kldload dtrace
 	-kldload profile
+	-kldload sdt
 	-kldload systrace
 	kldstat
 
 unload	:
 	-kldunload systrace
+	-kldunload sdt
 	-kldunload profile
 	-kldunload dtrace
 	-kldunload cyclic


More information about the p4-projects mailing list