| 844 | |
| 845 | |
| 846 | void init_tracing(agent* thisAgent) |
| 847 | { |
| 848 | int i; |
| 849 | |
| 850 | for (i = 0; i < 3; i++) |
| 851 | { |
| 852 | thisAgent->object_tr_ht[i] = make_hash_table(thisAgent, 0, tracing_rule_hash_function); |
| 853 | thisAgent->stack_tr_ht[i] = make_hash_table(thisAgent, 0, tracing_rule_hash_function); |
| 854 | thisAgent->object_tf_for_anything[i] = NIL; |
| 855 | thisAgent->stack_tf_for_anything[i] = NIL; |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | trace_format* lookup_trace_format(agent* thisAgent, |
| 860 | bool stack_trace, |
no test coverage detected