aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h248
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-11 13:02:41 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-11 13:02:41 +0000
commitce5339ef143ac2dfb573984f1df4257eda5ced31 (patch)
treea061daf09d3ae8b6c00768df14ab71473b841743 /asn1/h248
parenteb2ef02fcc0ccb54b5ce91d85a4cc6235b6fd667 (diff)
give se_trees names so that it is easier to debug and to log how often certain trees are accessed
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17587 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'asn1/h248')
-rw-r--r--asn1/h248/packet-h248-template.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/asn1/h248/packet-h248-template.c b/asn1/h248/packet-h248-template.c
index 34e65b5e9e..a84d3db460 100644
--- a/asn1/h248/packet-h248-template.c
+++ b/asn1/h248/packet-h248-template.c
@@ -2116,10 +2116,10 @@ void proto_register_h248(void) {
register_init_routine( &h248_init );
- msgs = se_tree_create(SE_TREE_TYPE_RED_BLACK);
- trxs = se_tree_create(SE_TREE_TYPE_RED_BLACK);
- ctxs_by_trx = se_tree_create(SE_TREE_TYPE_RED_BLACK);
- ctxs = se_tree_create(SE_TREE_TYPE_RED_BLACK);
+ msgs = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_msgs");
+ trxs = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_trxs");
+ ctxs_by_trx = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_ctxs_by_trx");
+ ctxs = se_tree_create(SE_TREE_TYPE_RED_BLACK, "h248_ctxs");
}