Date: Tue, 16 May 2006 05:01:34 GMT From: John Birrell <jb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 97233 for review Message-ID: <200605160501.k4G51YW8092054@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=97233 Change 97233 by jb@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605160501.k4G51YW8092054>