mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Removed obsolete file
svn path=/trunk/; revision=1702
This commit is contained in:
parent
18015b2244
commit
9926c78c7f
1 changed files with 0 additions and 37 deletions
|
@ -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));
|
||||
}
|
Loading…
Reference in a new issue