diff options
author | hunt <hunt> | 2007-03-25 19:42:54 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-03-25 19:42:54 +0000 |
commit | 4d452cb34d0d15d88ef6b04ce8407ad106447d98 (patch) | |
tree | a60d7648aac4f6142cd66099f38bf83db94fedb5 | |
parent | 37ebca01742fea41602ecb5b471d3367a1e2c64b (diff) | |
download | systemtap-steved-4d452cb34d0d15d88ef6b04ce8407ad106447d98.tar.gz systemtap-steved-4d452cb34d0d15d88ef6b04ce8407ad106447d98.tar.xz systemtap-steved-4d452cb34d0d15d88ef6b04ce8407ad106447d98.zip |
Remove some debug statements.
-rw-r--r-- | runtime/map-gen.c | 2 | ||||
-rw-r--r-- | runtime/pmap-gen.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/runtime/map-gen.c b/runtime/map-gen.c index 13c24d76..e662e71e 100644 --- a/runtime/map-gen.c +++ b/runtime/map-gen.c @@ -410,7 +410,6 @@ int KEYSYM(__stp_map_set) (MAP map, ALLKEYSD(key), VSTYPE val, int add) hlist_for_each(e, head) { n = (struct KEYSYM(map_node) *)((long)e - sizeof(struct list_head)); - dbug("map_node =%lx\n", (long)n); //dbug ("n=%lx key1=%ld n->key1=%ld\n", (long)n, key1, n->key1); if (KEY1_EQ_P(n->key1, key1) #if KEY_ARITY > 1 @@ -465,7 +464,6 @@ VALTYPE KEYSYM(_stp_map_get) (MAP map, ALLKEYSD(key)) hlist_for_each(e, head) { n = (struct KEYSYM(map_node) *)((long)e - sizeof(struct list_head)); - dbug("map_node =%lx\n", (long)n); if (KEY1_EQ_P(n->key1, key1) #if KEY_ARITY > 1 && KEY2_EQ_P(n->key2, key2) diff --git a/runtime/pmap-gen.c b/runtime/pmap-gen.c index ddae87ab..34bb9104 100644 --- a/runtime/pmap-gen.c +++ b/runtime/pmap-gen.c @@ -498,7 +498,6 @@ int KEYSYM(__stp_pmap_set) (MAP map, ALLKEYSD(key), VSTYPE val, int add) hlist_for_each(e, head) { n = (struct KEYSYM(pmap_node) *)((long)e - sizeof(struct list_head)); - dbug("map_node =%lx\n", (long)n); if (KEY1_EQ_P(n->key1, key1) #if KEY_ARITY > 1 && KEY2_EQ_P(n->key2, key2) @@ -575,7 +574,6 @@ VALTYPE KEYSYM(_stp_pmap_get_cpu) (PMAP pmap, ALLKEYSD(key)) hlist_for_each(e, head) { n = (struct KEYSYM(pmap_node) *)((long)e - sizeof(struct list_head)); - dbug("map_node =%lx\n", (long)n); if (KEY1_EQ_P(n->key1, key1) #if KEY_ARITY > 1 && KEY2_EQ_P(n->key2, key2) @@ -667,7 +665,7 @@ VALTYPE KEYSYM(_stp_pmap_get) (PMAP pmap, ALLKEYSD(key)) #endif ) { if (anode == NULL) { - dbug("agg=%lx ahead=%lx\n", (long)agg, (long)ahead); + // dbug("agg=%lx ahead=%lx\n", (long)agg, (long)ahead); anode = _stp_new_agg(agg, ahead, (struct map_node *)n); } else { if (clear_agg) { |