This commit was generated by cvs2svn to compensate for changes in r52,
[reactos.git] / reactos / ntoskrnl / dbg / brkpoint.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: ntoskrnl/dbg/brkpoints.c
5 * PURPOSE: Handles breakpoints
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 * UPDATE HISTORY:
8 * Created 22/05/98
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ddk/ntddk.h>
14
15 #include <internal/debug.h>
16
17 /* FUNCTIONS *****************************************************************/
18
19 NTSTATUS STDCALL NtSystemDebugControl(VOID)
20 {
21 UNIMPLEMENTED;
22 }
23
24 VOID DbgBreakPoint(VOID)
25 {
26 __asm__("int $3\n\t");
27 }
28