Temporarly disable a correct bugcheck in order to hide a ReactOS bug, now that the...
[reactos.git] / reactos / ntoskrnl / ke / i386 / idt.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/ke/i386/idt.c
6 * PURPOSE: IDT managment
7 *
8 * PROGRAMMERS: David Welch (welch@cwcom.net)
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ntoskrnl.h>
14 #define NDEBUG
15 #include <internal/debug.h>
16
17 /* GLOBALS *******************************************************************/
18
19 IDT_DESCRIPTOR KiIdt[256];
20
21 #include <pshpack1.h>
22
23 struct
24 {
25 USHORT Length;
26 ULONG Base;
27 } KiIdtDescriptor = {256 * 8, (ULONG)KiIdt};
28
29 #include <poppack.h>
30
31 /* FUNCTIONS *****************************************************************/
32
33