diff options
author | das <das> | 2008-08-14 02:12:23 (GMT) |
---|---|---|
committer | das <das> | 2008-08-14 02:12:23 (GMT) |
commit | 978f2d06b37ac3302422812bf8cb0ad7eb972f97 (patch) | |
tree | 17baa52cc265a3d5a5a7ca9e459109d1ab31cb5d /generic/tclBasic.c | |
parent | 1fa87fa862bd33216bb805df67139629fd2e915e (diff) | |
download | tcl-978f2d06b37ac3302422812bf8cb0ad7eb972f97.zip tcl-978f2d06b37ac3302422812bf8cb0ad7eb972f97.tar.gz tcl-978f2d06b37ac3302422812bf8cb0ad7eb972f97.tar.bz2 |
* generic/tclCompile.h: add support for debug logging of DTrace
* generic/tclBasic.c: 'proc', 'cmd' and 'inst' probes (does
_not_ require a platform with DTrace).
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 4ce4590..dbdcd7c 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.75.2.33 2008/07/28 20:01:07 andreas_kupries Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.75.2.34 2008/08/14 02:12:25 das Exp $ */ #include "tclInt.h" @@ -6489,6 +6489,9 @@ DTraceObjCmd( } return TCL_OK; } + +TCL_DTRACE_DEBUG_LOG(); + #endif /* USE_DTRACE */ /* |