diff options
author | hunt <hunt> | 2005-07-01 19:26:17 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-07-01 19:26:17 +0000 |
commit | f5548c07826ab136c199055769ccfc34e01c0cd7 (patch) | |
tree | 738aed9f3e2cb9158ca58ac8d1e73bfba73dae86 /runtime/stat-common.c | |
parent | 9a45e491a7365db5178c4b6c33804ce3fc07ffe0 (diff) | |
download | systemtap-steved-f5548c07826ab136c199055769ccfc34e01c0cd7.tar.gz systemtap-steved-f5548c07826ab136c199055769ccfc34e01c0cd7.tar.xz systemtap-steved-f5548c07826ab136c199055769ccfc34e01c0cd7.zip |
2005-07-01 Martin Hunt <hunt@redhat.com>
* probes.c: Convert all _stp_log() calls to either stp_warn() or
dbug().
* print.c: Comment out dbug()s.
* stat-common.c: Comment out dbug()s.
Diffstat (limited to 'runtime/stat-common.c')
-rw-r--r-- | runtime/stat-common.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/stat-common.c b/runtime/stat-common.c index d136ec99..ff19662b 100644 --- a/runtime/stat-common.c +++ b/runtime/stat-common.c @@ -116,7 +116,7 @@ static void _stp_stat_print_histogram (Stat st, stat *sd) val_space = needed_space (st->hist_start + st->hist_int * (st->hist_buckets - 1)); else val_space = needed_space (1 << (st->hist_buckets - 1)); - dbug ("max=%lld scale=%d val_space=%d\n", max, scale, val_space); + //dbug ("max=%lld scale=%d val_space=%d\n", max, scale, val_space); /* print header */ j = 0; @@ -157,7 +157,6 @@ static void _stp_stat_print_histogram (Stat st, stat *sd) static void _stp_stat_print_valtype (char *fmt, Stat st, struct stat_data *sd, int cpu) { - dbug ("fmt=%c\n", *fmt); switch (*fmt) { case 'C': _stp_printf("%lld", sd->count); |