| 1830 | |
| 1831 | |
| 1832 | void print_stack_trace(agent* thisAgent, Symbol* object, Symbol* state, int slot_type, |
| 1833 | bool allow_cycle_counts) |
| 1834 | { |
| 1835 | growable_string gs; |
| 1836 | |
| 1837 | thisAgent->tf_printing_tc = get_new_tc_number(thisAgent); |
| 1838 | gs = selection_to_trace_string(thisAgent, object, state, slot_type, allow_cycle_counts); |
| 1839 | print_string(thisAgent, text_of_growable_string(gs)); |
| 1840 | free_growable_string(thisAgent, gs); |
| 1841 | |
| 1842 | // RPM 5/05 |
| 1843 | print_stack_trace_xml(thisAgent, object, state, slot_type, allow_cycle_counts); |
| 1844 | } |
| 1845 | |
| 1846 | /* kjh(B1) begin */ |
| 1847 | void print_object_trace_using_provided_format_string(agent* thisAgent, |
no test coverage detected