Emul8.Peripherals.CPU.TranslationCPU.StopGdbServer C# (CSharp) Method

StopGdbServer() public method

public StopGdbServer ( ) : void
return void
        public void StopGdbServer()
        {
            if(!IsGdbServerCreated)
            {
                return;
            }

            stub.Dispose();
            stub = null;
        }
TranslationCPU