Changelog: dlls/ntdll/signal_sparc.c - Implemented DbgBreakPoint and DbgUserBreakPoint for Sparc. Debugger must already be attached for this implementation to work. Gregg Mattinson Co-op Developer Sun Microsystems of Canada
*** wine-20020605/dlls/ntdll/signal_sparc.c Thu Jun 20 07:45:54 2002 --- wine/dlls/ntdll/signal_sparc.c Thu Jun 20 07:42:32 2002 *************** *** 421,427 **** --- 421,427 ---- */ void WINAPI DbgBreakPoint(void) { - /* FIXME */ + kill(getpid(), SIGTRAP); } /********************************************************************** *************** *** 429,435 **** --- 429,435 ---- */ void WINAPI DbgUserBreakPoint(void) { - /* FIXME */ + kill(getpid(), SIGTRAP); } #endif /* __sparc__ */