debugger_constructor() { CONSTRUCTOR_PRINT("CONSTRUCTOR_PRIORITY_DEBUGGER_CONSTRUCTOR=%d, construct debugger\n", CONSTRUCTOR_PRIORITY_DEBUGGER_CONSTRUCTOR); debugger_gp = debugger_creator("dbg.ini",0); debugger_init(debugger_gp); return 0; }
int main() { int ret = 0; printf("LIBCDF_VERSION:%s\n",LIBCDF_VERSION); register_all_lib_modules(); debugger_gp = debugger_creator("dbg.ini",0); debugger_init(debugger_gp); dbg_str(DBG_DETAIL,"debugger is start up"); test_container(); test_datastructure(); test_analyzer(); dbg_str(DBG_DETAIL,"test end"); return ret; }