| 51 | **************************************************************************/ |
| 52 | |
| 53 | void init_explain(agent* thisAgent) |
| 54 | { |
| 55 | |
| 56 | /* "AGR 564" applies to this whole function */ |
| 57 | |
| 58 | thisAgent->explain_chunk_name[0] = '\0'; |
| 59 | thisAgent->explain_chunk_list = NULL; |
| 60 | thisAgent->explain_backtrace_list = NULL; |
| 61 | /* added in this initialization, not sure why removed... KJC 7/96 */ |
| 62 | /* thisAgent->explain_flag = false; |
| 63 | */ |
| 64 | /* should we be re-initializing here?? */ |
| 65 | set_sysparam(thisAgent, EXPLAIN_SYSPARAM, false); |
| 66 | |
| 67 | /* |
| 68 | * add_help("explain",help_on_explain); |
| 69 | * add_command("explain",explain_interface_routine); |
| 70 | * |
| 71 | * explain_chunk_list = NULL; |
| 72 | * explain_backtrace_list = NULL; |
| 73 | * thisAgent->explain_flag = false; |
| 74 | */ |
| 75 | } |
| 76 | |
| 77 | /*************************************************************************** |
| 78 | * Function : free_backtrace_list |
no test coverage detected