dynlink_handler() private method

private dynlink_handler ( Inferior inferior ) : bool
inferior Inferior
return bool
 internal override bool BreakpointHandler(Inferior inferior,
                                          out bool remain_stopped)
 {
     OS.dynlink_handler(inferior);
     if (!Instruction.InterpretInstruction(inferior))
     {
         throw new InternalError();
     }
     remain_stopped = false;
     return(true);
 }