diff options
author | gdt <gdt> | 2006-10-13 23:45:15 +0000 |
---|---|---|
committer | gdt <gdt> | 2006-10-13 23:45:15 +0000 |
commit | 08173e40c4266d2afe705df67f9097a411190311 (patch) | |
tree | 4bb374184d88a3156fc75d427575ff9f3de0a082 /devel/etrace/DESCR | |
parent | f3409045b77d126b0f8da049c99728a685ea85da (diff) | |
download | pkgsrc-08173e40c4266d2afe705df67f9097a411190311.tar.gz |
etrace: A run-time tracing tool
-------------------------------
These source files comprise a simple but efficient utility that allows the
display of a function call tree in a C program at run-time. It is also
possible to dump the results of a program execution to an ASCII file for
later examination.
* ptrace.c compiles your code to enable this run-time tracing
* etrace is a Python script that will perform the run-time tracing by
displaying the function names as they are called
* etrace.pl is a Perl script that will perform the run-time tracing by
displaying the function names as they are called. Moreover, etrace.pl
can be used to trace dynamic libraries.
Diffstat (limited to 'devel/etrace/DESCR')
-rw-r--r-- | devel/etrace/DESCR | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/etrace/DESCR b/devel/etrace/DESCR new file mode 100644 index 00000000000..f0ec3ce21cb --- /dev/null +++ b/devel/etrace/DESCR @@ -0,0 +1,13 @@ +etrace: A run-time tracing tool +------------------------------- +These source files comprise a simple but efficient utility that allows the +display of a function call tree in a C program at run-time. It is also +possible to dump the results of a program execution to an ASCII file for +later examination. + +* ptrace.c compiles your code to enable this run-time tracing +* etrace is a Python script that will perform the run-time tracing by +displaying the function names as they are called +* etrace.pl is a Perl script that will perform the run-time tracing by +displaying the function names as they are called. Moreover, etrace.pl +can be used to trace dynamic libraries. |