Implemented DbgBreakPoint and DbgUserBreakPoint for Sparc. Debugger

must already be attached for this implementation to work.
This commit is contained in:
Gregg Mattinson 2002-06-21 20:10:07 +00:00 committed by Alexandre Julliard
parent c6a0054484
commit 07db325edb
1 changed files with 2 additions and 2 deletions

View File

@ -416,7 +416,7 @@ void __wine_enter_vm86( CONTEXT *context )
*/
void WINAPI DbgBreakPoint(void)
{
/* FIXME */
kill(getpid(), SIGTRAP);
}
/**********************************************************************
@ -424,7 +424,7 @@ void WINAPI DbgBreakPoint(void)
*/
void WINAPI DbgUserBreakPoint(void)
{
/* FIXME */
kill(getpid(), SIGTRAP);
}
#endif /* __sparc__ */