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

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



  • 相关阅读:
    关系/比较运算符
    字符串连接符
    算数运算符
    基本数据类型之间的转换
    常用的进制
    数据类型的分类
    变量
    java目录结构
    C语言获取系统时间及time.h函数使用指南
    链表:单向链表的理解,创建及基本操作
  • 原文地址:https://www.cnblogs.com/piaoger/p/2113221.html
Copyright © 2020-2023  润新知