do_update_shlib_info() private method

private do_update_shlib_info ( Inferior inferior ) : void
inferior Inferior
return void
示例#1
0
 internal override bool BreakpointHandler(Inferior inferior,
                                          out bool remain_stopped)
 {
     OS.do_update_shlib_info(inferior);
     if (!Instruction.InterpretInstruction(inferior))
     {
         throw new InternalError();
     }
     remain_stopped = false;
     return(true);
 }