mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
25 lines
623 B
C
25 lines
623 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: ntoskrnl/dbg/brkpoints.c
|
|
* PURPOSE: Handles breakpoints
|
|
* PROGRAMMER: David Welch (welch@mcmail.com)
|
|
* UPDATE HISTORY:
|
|
* Created 22/05/98
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <internal/kernel.h>
|
|
#include <internal/linkage.h>
|
|
#include <ddk/ntddk.h>
|
|
|
|
#include <internal/debug.h>
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
VOID DbgBreakPoint(VOID)
|
|
{
|
|
__asm__("int $3\n\t");
|
|
}
|
|
|