/*
* tcl_cputime.d - measure Tcl on-CPU times for different types of operation.
* Written for the Tcl DTrace provider.
*
* $Id: tcl_cputime.d 63 2007-10-04 04:34:38Z brendan $
*
* USAGE: tcl_cputime.d [top] # hit Ctrl-C to end
* eg,
* tcl_cputime.d # default, truncate to 10 lines
* tcl_cputime.d 25 # truncate each report section to 25 lines
*
* This traces activity from all Tcl processes on the system with DTrace
* provider support (tcl8.4.16).
*
* FIELDS:
* PID Process ID
* NAME Name of call
* TOTAL Total on-CPU time for calls (us)
*
* COPYRIGHT: Copyright (c) 2007 Brendan Gregg.
*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* See the License for the specific language governing permissions
* and limitations under the License.
*
* CDDL HEADER END
*
* 09-Sep-2007 Brendan Gregg Created this.
*/
#define B_FALSE 0
#pragma D option defaultargs
{
printf("Tracing... Hit Ctrl-C to end.\n");
}
{
}
{
}
{
}
{
}
{
}