Removed obsolete file

svn path=/trunk/; revision=1702
This commit is contained in:
David Welch 2001-03-16 16:23:05 +00:00
parent 18015b2244
commit 9926c78c7f

View file

@ -1,37 +0,0 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/dbg/brkpoints.c
* PURPOSE: Handles breakpoints
* PROGRAMMER:
* UPDATE HISTORY:
* Created 22/05/98
*/
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/debug.h>
/* FUNCTIONS *****************************************************************/
NTSTATUS STDCALL
NtSystemDebugControl(VOID)
{
UNIMPLEMENTED;
}
VOID STDCALL
DbgBreakPoint(VOID)
{
__asm__("int $3\n\t");
}
VOID STDCALL
DbgBreakPointWithStatus(ULONG Status)
{
__asm__("mov %0, %%eax\n\t"
"int $3\n\t"
::"m"(Status));
}