Wednesday, February 7, 2007

_asm int 3 and __debugbreak() and DebugBreak();

C++ hardcoded debug breakpoints on Windows:

  • _asm int 3
    Not supported on Windows 64 bits architecture


  • __debugbreak(); or DebugBreak();
    Use this on Windows 64 bits


  • .

    No comments: