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.)

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



  • 相关阅读:
    警惕:利用Dropbox链接散播的恶意软件
    repo的小结
    【网络协议】TCP的拥塞控制机制
    具体总结 Hive VS 传统关系型数据库
    站点防止攻击
    Java凝视Override、Deprecated、SuppressWarnings具体解释
    括号配对问题
    java的System.getProperty()方法能够获取的值
    HTTP协议是无状态协议,怎么理解?
    C++
  • 原文地址:https://www.cnblogs.com/piaoger/p/2113221.html
Copyright © 2011-2022 走看看