Changed: Replace int 3 asm by __debugbreak()
This commit is contained in:
parent
bc50742bfe
commit
cccc2c47b8
2 changed files with 5 additions and 6 deletions
|
@ -677,7 +677,7 @@ void CFairMutex::debugEndEnter()
|
|||
if (_Mutex == (void*)0x88)
|
||||
{
|
||||
OutputDebugString (str);
|
||||
if (entered) __asm int 3;
|
||||
if (entered) __debugbreak();
|
||||
entered = true;
|
||||
}
|
||||
*/
|
||||
|
@ -704,7 +704,7 @@ void CFairMutex::debugLeave()
|
|||
if (_Mutex == (void*)0x88)
|
||||
{
|
||||
OutputDebugString (str);
|
||||
if (!entered) __asm int 3;
|
||||
if (!entered) __debugbreak();
|
||||
entered = false;
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -440,10 +440,9 @@ int main(int argc, char **argv)
|
|||
if (string(cmdline) == "/crash")
|
||||
volatile int toto = *(int*)0;
|
||||
if (string(cmdline) == "/break")
|
||||
__asm
|
||||
{
|
||||
int 3
|
||||
};
|
||||
{
|
||||
__debugbreak();
|
||||
}
|
||||
#endif // TEST_CRASH_COUNTER
|
||||
|
||||
HInstance = hInstance;
|
||||
|
|
Loading…
Reference in a new issue