- Don't use KeBugCheck(0) -- 0 is an invalid bugcode. Use a proper bugcode, DbgBreakP...
authorStefan Ginsberg <stefanginsberg@gmail.com>
Wed, 21 Oct 2009 17:52:11 +0000 (17:52 +0000)
committerStefan Ginsberg <stefanginsberg@gmail.com>
Wed, 21 Oct 2009 17:52:11 +0000 (17:52 +0000)
- Remove some unused and deprecated macros from the network stack that did this.
- fastfat_new: Use FAT_FILE_SYSTEM instead of magic 0x23.

svn path=/trunk/; revision=43673

29 files changed:
reactos/drivers/filesystems/fastfat/fcb.c
reactos/drivers/filesystems/fastfat/vfat.h
reactos/drivers/filesystems/fastfat_new/create.c
reactos/drivers/filesystems/fastfat_new/fastfat.h
reactos/drivers/filesystems/fastfat_new/fcb.c
reactos/drivers/network/afd/include/debug.h
reactos/drivers/network/dd/ne2000/include/debug.h
reactos/drivers/network/dd/ne2000/ne2000/main.c
reactos/drivers/network/lan/include/debug.h
reactos/drivers/wdm/audio/backpln/portcls/adapter.cpp
reactos/drivers/wdm/audio/backpln/portcls/pin_dmus.cpp
reactos/drivers/wdm/audio/backpln/portcls/pin_wavecyclic.cpp
reactos/drivers/wdm/audio/backpln/portcls/pin_wavepci.cpp
reactos/drivers/wdm/audio/backpln/portcls/pin_wavert.cpp
reactos/drivers/wdm/audio/backpln/portcls/propertyhandler.cpp
reactos/drivers/wdm/audio/backpln/portcls/purecall.cpp
reactos/hal/halamd64/generic/hal.c
reactos/hal/halarm/generic/hal.c
reactos/hal/halppc/generic/bus.c
reactos/hal/halppc/generic/irql.c
reactos/hal/halppc/generic/profil.c
reactos/hal/halx86/generic/bios.c
reactos/hal/halx86/generic/profil.c
reactos/hal/halx86/mp/mpconfig.c
reactos/lib/drivers/ip/network/arp.c
reactos/lib/drivers/oskittcp/include/oskitdebug.h
reactos/ntoskrnl/ke/powerpc/exp.c
reactos/ntoskrnl/ke/powerpc/kiinit.c
reactos/ntoskrnl/mm/ppool.c

index 0522bf5..1bfc51c 100644 (file)
@@ -81,7 +81,7 @@ vfatInitFcb(PVFATFCB Fcb, PUNICODE_STRING NameU)
        {
                /* FIXME: what to do if no more memory? */
                DPRINT1("Unable to initialize FCB for filename '%wZ'\n", NameU);
        {
                /* FIXME: what to do if no more memory? */
                DPRINT1("Unable to initialize FCB for filename '%wZ'\n", NameU);
-               KeBugCheckEx(0, (ULONG_PTR)Fcb, (ULONG_PTR)NameU, 0, 0);
+               KeBugCheckEx(FAT_FILE_SYSTEM, (ULONG_PTR)Fcb, (ULONG_PTR)NameU, 0, 0);
        }
 
        Fcb->PathNameU.Length = 0;
        }
 
        Fcb->PathNameU.Length = 0;
index 7842ca6..e9c37da 100644 (file)
@@ -1,4 +1,5 @@
 #include <ntifs.h>
 #include <ntifs.h>
+#include <bugcodes.h>
 #include <ntdddisk.h>
 #include <debug.h>
 
 #include <ntdddisk.h>
 #include <debug.h>
 
index e76dc9a..4959048 100644 (file)
@@ -895,7 +895,7 @@ FatiCreate(IN PFAT_IRP_CONTEXT IrpContext,
         else
         {
             /* Unexpected FCB type */
         else
         {
             /* Unexpected FCB type */
-            KeBugCheckEx(/*FAT_FILE_SYSTEM*/0x23, __LINE__, (ULONG_PTR)Fcb, 0, 0);
+            KeBugCheckEx(FAT_FILE_SYSTEM, __LINE__, (ULONG_PTR)Fcb, 0, 0);
         }
     }
 
         }
     }
 
index 7b5f250..c3d5888 100644 (file)
@@ -1,4 +1,5 @@
 #include <ntifs.h>
 #include <ntifs.h>
+#include <bugcodes.h>
 #include <ntdddisk.h>
 #include <debug.h>
 #include <pseh/pseh2.h>
 #include <ntdddisk.h>
 #include <debug.h>
 #include <pseh/pseh2.h>
index e863984..8f70192 100644 (file)
@@ -389,7 +389,7 @@ FatiOpenExistingFcb(IN PFAT_IRP_CONTEXT IrpContext,
     else
     {
         /* We can't get here */
     else
     {
         /* We can't get here */
-        KeBugCheckEx(0x23, CreateDisposition, 0, 0, 0);
+        KeBugCheckEx(FAT_FILE_SYSTEM, CreateDisposition, 0, 0, 0);
     }
 
 
     }
 
 
index da024f1..705a9d0 100644 (file)
@@ -50,7 +50,7 @@ extern DWORD DebugTraceLevel;
 #ifdef NASSERT
 #define ASSERT(x)
 #else /* NASSERT */
 #ifdef NASSERT
 #define ASSERT(x)
 #else /* NASSERT */
-#define ASSERT(x) if (!(x)) { AFD_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
+#define ASSERT(x) if (!(x)) { AFD_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); DbgBreakPoint(); }
 #endif /* NASSERT */
 
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 #endif /* NASSERT */
 
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
index 309a8a8..9f352f6 100644 (file)
@@ -43,18 +43,6 @@ extern ULONG DebugTraceLevel;
 #endif /* _MSC_VER */
 
 
 #endif /* _MSC_VER */
 
 
-/* Assert is defined in ndis.h */
-#if 0
-#ifdef ASSERT
-#undef ASSERT
-#endif
-
-#ifdef NASSERT
-#define ASSERT(x)
-#else /* NASSERT */
-#define ASSERT(x) if (!(x)) { NDIS_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
-#endif /* NASSERT */
-#endif
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 #define ASSERT_IRQL_EQUAL(x) ASSERT(KeGetCurrentIrql() == (x))
 
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 #define ASSERT_IRQL_EQUAL(x) ASSERT(KeGetCurrentIrql() == (x))
 
index 678e959..6ecd7bd 100644 (file)
@@ -1001,7 +1001,7 @@ DriverEntry(
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to set DwordTest: 0x%x\n", Status);
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to set DwordTest: 0x%x\n", Status);
-                KeBugCheck(0);
+                DbgBreakPoint();
             }
 
             DbgPrint("ne2000!MiniportInitialize: DwordTest successfully set\n");
             }
 
             DbgPrint("ne2000!MiniportInitialize: DwordTest successfully set\n");
@@ -1015,7 +1015,7 @@ DriverEntry(
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to set StringTest: 0x%x\n", Status);
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to set StringTest: 0x%x\n", Status);
-                KeBugCheck(0);
+                DbgBreakPoint();
             }
 
             DbgPrint("ne2000!MiniportInitialize: StringTest successfully set\n");
             }
 
             DbgPrint("ne2000!MiniportInitialize: StringTest successfully set\n");
@@ -1031,14 +1031,14 @@ DriverEntry(
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to read DwordTest: 0x%x\n", Status);
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to read DwordTest: 0x%x\n", Status);
-                KeBugCheck(0);
+                DbgBreakPoint();
             }
 
             if(ParameterValue->ParameterData.IntegerData != 0x12345678)
             {
                 DbgPrint("ne2000!MiniportInitialize: DwordTest value is wrong: 0x%x\n",
                     ParameterValue->ParameterData.IntegerData);
             }
 
             if(ParameterValue->ParameterData.IntegerData != 0x12345678)
             {
                 DbgPrint("ne2000!MiniportInitialize: DwordTest value is wrong: 0x%x\n",
                     ParameterValue->ParameterData.IntegerData);
-                KeBugCheck(0);
+                DbgBreakPoint();
             }
 
             DbgPrint("ne2000!MiniportInitialize: DwordTest value was correctly read\n");
             }
 
             DbgPrint("ne2000!MiniportInitialize: DwordTest value was correctly read\n");
@@ -1049,7 +1049,7 @@ DriverEntry(
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to read StringTest: 0x%x\n", Status);
             if(Status != NDIS_STATUS_SUCCESS)
             {
                 DbgPrint("ne2000!MiniportInitialize: failed to read StringTest: 0x%x\n", Status);
-                KeBugCheck(0);
+                DbgBreakPoint();
             }
 
             if(wcsncmp(ParameterValue->ParameterData.StringData.Buffer, L"Testing123",
             }
 
             if(wcsncmp(ParameterValue->ParameterData.StringData.Buffer, L"Testing123",
@@ -1057,7 +1057,7 @@ DriverEntry(
             {
                 DbgPrint("ne2000!MiniportInitialize: StringTest value is wrong: %wZ\n",
                     &ParameterValue->ParameterData.StringData);
             {
                 DbgPrint("ne2000!MiniportInitialize: StringTest value is wrong: %wZ\n",
                     &ParameterValue->ParameterData.StringData);
-                KeBugCheck(0);
+                DbgBreakPoint();
             }
 
             DbgPrint("ne2000!MiniportInitialize: StringTest value was correctly read\n");
             }
 
             DbgPrint("ne2000!MiniportInitialize: StringTest value was correctly read\n");
index af28e58..bef2357 100644 (file)
@@ -57,18 +57,6 @@ extern DWORD DebugTraceLevel;
 
 #endif /* _MSC_VER */
 
 
 #endif /* _MSC_VER */
 
-#if 0
-#ifdef ASSERT
-#undef ASSERT
-#endif
-
-#ifdef NASSERT
-#define ASSERT(x)
-#else /* NASSERT */
-#define ASSERT(x) if (!(x)) { LA_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
-#endif /* NASSERT */
-#endif
-
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 
 #else /* DBG */
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 
 #else /* DBG */
index edc5673..5491a23 100644 (file)
@@ -232,7 +232,7 @@ PcRegisterSubdevice(
     if (!DeviceExt)
     {
         // should not happen
     if (!DeviceExt)
     {
         // should not happen
-        KeBugCheck(0);
+        DbgBreakPoint();
         return STATUS_UNSUCCESSFUL;
     }
 
         return STATUS_UNSUCCESSFUL;
     }
 
index b518261..07395ae 100644 (file)
@@ -715,7 +715,8 @@ CPortPinDMus::Init(
     else
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
     else
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
-        KeBugCheck(0);
+        DbgBreakPoint();
+        while(TRUE);
     }
 
     Status = NewIrpQueue(&m_IrpQueue);
     }
 
     Status = NewIrpQueue(&m_IrpQueue);
index 78be09a..56f6217 100644 (file)
@@ -869,7 +869,8 @@ CPortPinWaveCyclic::Init(
     else
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
     else
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
-        KeBugCheck(0);
+        DbgBreakPoint();
+        while(TRUE);
     }
 
 
     }
 
 
index 599ba53..79ff0a1 100644 (file)
@@ -981,7 +981,8 @@ CPortPinWavePci::Init(
     else
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
     else
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
-        KeBugCheck(0);
+        DbgBreakPoint();
+        while(TRUE);
     }
 
     Status = m_Miniport->NewStream(&m_Stream,
     }
 
     Status = m_Miniport->NewStream(&m_Stream,
index 0840319..e325e49 100644 (file)
@@ -697,6 +697,7 @@ CPortPinWaveRT::Init(
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
         KeBugCheck(0);
     {
         DPRINT("Unexpected Communication %u DataFlow %u\n", KsPinDescriptor->Communication, KsPinDescriptor->DataFlow);
         KeBugCheck(0);
+        while(TRUE);
     }
 
     Status = m_Miniport->NewStream(&m_Stream, m_PortStream, ConnectDetails->PinId, Capture, m_Format);
     }
 
     Status = m_Miniport->NewStream(&m_Stream, m_PortStream, ConnectDetails->PinId, Capture, m_Format);
index 5d8559f..9a4bbbd 100644 (file)
@@ -212,7 +212,8 @@ PinPropertyHandler(
     if (!NT_SUCCESS(Status))
     {
         DPRINT("Failed to obtain ISubdevice interface from port driver\n");
     if (!NT_SUCCESS(Status))
     {
         DPRINT("Failed to obtain ISubdevice interface from port driver\n");
-        KeBugCheck(0);
+        DbgBreakPoint();
+        while(TRUE);
     }
 
     // get current stack location
     }
 
     // get current stack location
index dd92ebe..5de3ea0 100644 (file)
@@ -16,7 +16,7 @@ extern "C" {
   {
     // put error handling here
 
   {
     // put error handling here
 
-    KeBugCheck(0);
+    DbgBreakPoint();
 
   }
 }
 
   }
 }
index 759c0fb..fe4871f 100644 (file)
@@ -120,7 +120,7 @@ VOID
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -131,7 +131,7 @@ VOID
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -142,7 +142,7 @@ ULONG_PTR
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return Interval;
 }
 
     return Interval;
 }
 
index 584d1f6..c35aa0d 100644 (file)
@@ -120,7 +120,7 @@ VOID
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -131,7 +131,7 @@ VOID
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -142,7 +142,7 @@ ULONG_PTR
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return Interval;
 }
 
     return Interval;
 }
 
index 23bf9f6..9b708a2 100644 (file)
@@ -222,7 +222,7 @@ HalGetBusDataByOffset(IN BUS_DATA_TYPE BusDataType,
     else if (BusDataType == EisaConfiguration)
     {
         /* FIXME: TODO */
     else if (BusDataType == EisaConfiguration)
     {
         /* FIXME: TODO */
-        KeBugCheck(0);
+        ASSERT(FALSE);
     }
     else if ((BusDataType == PCIConfiguration) &&
              (HalpPCIConfigInitialized) &&
     }
     else if ((BusDataType == PCIConfiguration) &&
              (HalpPCIConfigInitialized) &&
index 5cc5a80..bc1604e 100644 (file)
@@ -216,7 +216,7 @@ KfLowerIrql (KIRQL  NewIrql)
     {
       DbgPrint ("(%s:%d) NewIrql %x CurrentIrql %x\n",
                __FILE__, __LINE__, NewIrql, KeGetPcr()->Irql);
     {
       DbgPrint ("(%s:%d) NewIrql %x CurrentIrql %x\n",
                __FILE__, __LINE__, NewIrql, KeGetPcr()->Irql);
-      KeBugCheck(0);
+      KeBugCheck(IRQL_NOT_LESS_OR_EQUAL);
       for(;;);
     }
 
       for(;;);
     }
 
@@ -251,7 +251,7 @@ KfRaiseIrql (KIRQL  NewIrql)
     {
       DbgPrint ("%s:%d CurrentIrql %x NewIrql %x\n",
                __FILE__,__LINE__,KeGetPcr()->Irql,NewIrql);
     {
       DbgPrint ("%s:%d CurrentIrql %x NewIrql %x\n",
                __FILE__,__LINE__,KeGetPcr()->Irql,NewIrql);
-      KeBugCheck (0);
+      KeBugCheck (IRQL_NOT_GREATER_OR_EQUAL);
       for(;;);
     }
 
       for(;;);
     }
 
@@ -424,7 +424,7 @@ HalRequestSoftwareInterrupt(
       break;
 
     default:
       break;
 
     default:
-      KeBugCheck(0);
+      DbgBreakPoint();
   }
 }
 
   }
 }
 
@@ -443,7 +443,7 @@ HalClearSoftwareInterrupt(
       break;
 
     default:
       break;
 
     default:
-      KeBugCheck(0);
+      DbgBreakPoint();
   }
 }
 
   }
 }
 
index 6a01854..d7f31af 100644 (file)
@@ -21,7 +21,7 @@ VOID
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -32,7 +32,7 @@ VOID
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -43,7 +43,7 @@ ULONG_PTR
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
-    KeBugCheck(0);
+    UNIMPLEMENTED;
     return Interval;
 }
 
     return Interval;
 }
 
index 30e2222..ebbbce5 100644 (file)
@@ -109,7 +109,7 @@ HalpSwitchToRealModeTrapHandlers(VOID)
     ULONG Handler;
     PHARDWARE_PTE IdtPte;
 
     ULONG Handler;
     PHARDWARE_PTE IdtPte;
 
-    /* On i586, the first 7 entries of IDT are write-protected, unprotect them. */
+    /* On i586, the first 7 entries of IDT are write-protected, unprotect them. */ // Nasty hto hack
     if (KeGetCurrentPrcb()->CpuType == 5)
     {
         IdtPte = GetPteAddress(((PKIPCR)KeGetPcr())->IDT);
     if (KeGetCurrentPrcb()->CpuType == 5)
     {
         IdtPte = GetPteAddress(((PKIPCR)KeGetPcr())->IDT);
@@ -197,6 +197,7 @@ HalpUnmapRealModeMemory(VOID)
         Pte = GetPteAddress((PVOID)i);
         Pte->Valid = 0;
         Pte->Write = 0;
         Pte = GetPteAddress((PVOID)i);
         Pte->Valid = 0;
         Pte->Write = 0;
+        //Pte->Owner = 0; // Missing this?
         Pte->PageFrameNumber = 0;
     }
     
         Pte->PageFrameNumber = 0;
     }
     
index 7da77ff..53d653a 100644 (file)
@@ -21,7 +21,7 @@ VOID
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStopProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    ASSERT(FALSE);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -32,7 +32,7 @@ VOID
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
 NTAPI
 HalStartProfileInterrupt(IN KPROFILE_SOURCE ProfileSource)
 {
-    ASSERT(FALSE);
+    UNIMPLEMENTED;
     return;
 }
 
     return;
 }
 
@@ -43,6 +43,6 @@ ULONG_PTR
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
 NTAPI
 HalSetProfileInterval(IN ULONG_PTR Interval)
 {
-    ASSERT(FALSE);
+    UNIMPLEMENTED;
     return Interval;
 }
     return Interval;
 }
index 0ca1767..b7e40ad 100644 (file)
@@ -271,7 +271,7 @@ HaliReadMPConfigTable(PMP_CONFIGURATION_TABLE Table)
        
        DPRINT1("Bad MP configuration block signature: %c%c%c%c\n",
                pc[0], pc[1], pc[2], pc[3]);
        
        DPRINT1("Bad MP configuration block signature: %c%c%c%c\n",
                pc[0], pc[1], pc[2], pc[3]);
-       KeBugCheckEx(0, pc[0], pc[1], pc[2], pc[3]);
+       KeBugCheckEx(HAL_INITIALIZATION_FAILED, pc[0], pc[1], pc[2], pc[3]);
        return FALSE;
      }
 
        return FALSE;
      }
 
index 08549c2..368b718 100644 (file)
@@ -140,7 +140,7 @@ BOOLEAN ARPTransmit(PIP_ADDRESS Address, PVOID LinkAddress,
             break;
         default:
            TI_DbgPrint(DEBUG_ARP,("Bad Address Type %x\n", Address->Type));
             break;
         default:
            TI_DbgPrint(DEBUG_ARP,("Bad Address Type %x\n", Address->Type));
-           KeBugCheck(0);
+           DbgBreakPoint();
             /* Should not happen */
             return FALSE;
     }
             /* Should not happen */
             return FALSE;
     }
index 40ccd46..32754aa 100644 (file)
@@ -59,18 +59,6 @@ extern OSK_UINT OskitDebugTraceLevel;
 
 #endif /* _MSC_VER */
 
 
 #endif /* _MSC_VER */
 
-#if 0
-#ifdef ASSERT
-#undef ASSERT
-#endif
-
-#ifdef NASSERT
-#define ASSERT(x)
-#else /* NASSERT */
-#define ASSERT(x) if (!(x)) { OS_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
-#endif /* NASSERT */
-#endif
-
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 
 #else /* DBG */
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 
 #else /* DBG */
index 6d75f2d..2882036 100644 (file)
@@ -88,7 +88,7 @@ KiDispatchException(IN PEXCEPTION_RECORD ExceptionRecord,
     DbgPrint("EXCEPTION! Record %08x Frame %08x\n",
              ExceptionRecord, ExceptionFrame);
     MmuDumpMap();
     DbgPrint("EXCEPTION! Record %08x Frame %08x\n",
              ExceptionRecord, ExceptionFrame);
     MmuDumpMap();
-    KeBugCheck(0);
+    KeBugCheck(KMODE_EXCEPTION_NOT_HANDLED);
 }
 
 /*
 }
 
 /*
index a08987a..1d9c68b 100644 (file)
@@ -352,6 +352,6 @@ KiInitMachineDependent(VOID)
 
 void abort()
 {
 
 void abort()
 {
-    KeBugCheck(0);
+    KeBugCheck(KMODE_EXCEPTION_NOT_HANDLED);
     while(1);
 }
     while(1);
 }
index c105c25..0e3850f 100644 (file)
@@ -19,7 +19,7 @@
 #endif
 
 #undef ASSERT
 #endif
 
 #undef ASSERT
-#define ASSERT(x) if (!(x)) {DbgPrint("Assertion "#x" failed at %s:%d\n", __FILE__,__LINE__); KeBugCheck(0); }
+#define ASSERT(x) if (!(x)) {DbgPrint("Assertion "#x" failed at %s:%d\n", __FILE__,__LINE__); DbgBreakPoint(); }
 
 // enable "magic"
 //#define R_MAGIC
 
 // enable "magic"
 //#define R_MAGIC
@@ -27,7 +27,7 @@
 #define R_ACQUIRE_MUTEX(pool) /*DPRINT1("Acquiring PPool Mutex\n");*/ ExAcquireFastMutex(&pool->Mutex)
 #define R_RELEASE_MUTEX(pool) /*DPRINT1("Releasing PPool Mutex\n");*/ ExReleaseFastMutex(&pool->Mutex)
 #define R_PRINT_ADDRESS(addr) KeRosPrintAddress(addr)
 #define R_ACQUIRE_MUTEX(pool) /*DPRINT1("Acquiring PPool Mutex\n");*/ ExAcquireFastMutex(&pool->Mutex)
 #define R_RELEASE_MUTEX(pool) /*DPRINT1("Releasing PPool Mutex\n");*/ ExReleaseFastMutex(&pool->Mutex)
 #define R_PRINT_ADDRESS(addr) KeRosPrintAddress(addr)
-#define R_PANIC() KeBugCheck(0)
+#define R_PANIC() KeBugCheck(MEMORY_MANAGEMENT)
 #define R_DEBUG DbgPrint
 
 #ifdef _ARM_
 #define R_DEBUG DbgPrint
 
 #ifdef _ARM_