zoukankan      html  css  js  c++  java
  • VS2008: Unable to start debugging, Remote Debugging Monitor has been closed

    今日编码,竟碰到这个问题:

    VS2008: Unable to start debugging, Remote Debugging Monitor has been closed。

    当时的解决办法很简单,重新启动Visual Studio 2008,再打开时,错误随风而去,不知所终。

    但我的好奇心促使我到网上看看有没有什么高人对这个问题有一个精深的讲解。下面这个来自Stack Overflow

    ---------------------------------------------------------------------------------------------------

    If you are on a 64bit OS then you are 'silently' remote debugging.

    Devenv runs in WoW64 (meaning it's a 32bit process) ... when you hit F5 is launchs msvsmon.exe as a 64 bit process and sets up a communication channel between devenv and msvsmon "silent remote debugging" to allow debugging your 64 bit process.

    Check task manager when you are successfully debugging and you should see msvsmon.exe running.

    If the above assumption (64bit OS) is correct, the error you are seeing is based on Visual studio getting into a bad state.

    If it gives this error while an msvsmon.exe instance is running ... kill that instance. If there is no msvsmon.exe running, then restarting devenv is probably your only option.

    Another possible workaround is to set your project to 'platform x86' so that you are directly debugging.

    The x86 compiled managed assemblies or native binaries will run in Wow64, and prevent any need for the silent remote debugging. (Obviously this doesn't help if it is a 64-bit only problem ... but in practice that is rare.)

    --------------------------------------------------------------------------------------------------



  • 相关阅读:
    在Ubuntu下编译WebKit源码--qt
    Ubuntu 编译Webkit --gtk
    windows远程桌面访问ubuntu12.04
    CentOS下SVN服务器的搭建使用
    Centos搭建SVN服务器三步曲
    StringRedisTemplate常用操作
    MySQL中DATETIME、DATE和TIMESTAMP类型的区别
    mysql 时间索引执行计划
    MySQL大文本类型
    API网关原理
  • 原文地址:https://www.cnblogs.com/piaoger/p/2113221.html
Copyright © 2011-2022 走看看