5 modified files
reactos/drivers/dd/ide
diff -u -r1.60 -r1.61
--- ide.c 10 Feb 2004 16:22:55 -0000 1.60
+++ ide.c 7 May 2004 05:12:10 -0000 1.61
@@ -1,4 +1,4 @@
-/* $Id: ide.c,v 1.60 2004/02/10 16:22:55 navaraf Exp $
+/* $Id: ide.c,v 1.61 2004/05/07 05:12:10 royce Exp $
*
* IDE.C - IDE Disk driver
* written by Rex Jolliff
@@ -1576,7 +1576,7 @@
default:
Irp->IoStatus.Status = STATUS_NOT_SUPPORTED;
Irp->IoStatus.Information = 0;
- KeBugCheck((ULONG)Irp);
+ KEBUGCHECK((ULONG)Irp);
IoCompleteRequest(Irp, IO_NO_INCREMENT);
IoStartNextPacket(DeviceObject, FALSE);
break;
reactos/lib/kjs/ksrc
diff -u -r1.1 -r1.2
--- compat.c 10 Jan 2004 20:38:17 -0000 1.1
+++ compat.c 7 May 2004 05:12:10 -0000 1.2
@@ -4,7 +4,7 @@
#include "jsconfig.h"
void __kernel_abort() {
- KeBugCheck(0);
+ KEBUGCHECK(0);
}
void _assert( const char *expr, const char *file, int line ) {
reactos/lib/kjs/ksrc
diff -u -r1.1 -r1.2
--- js.c 10 Jan 2004 20:38:17 -0000 1.1
+++ js.c 7 May 2004 05:12:10 -0000 1.2
@@ -24,7 +24,7 @@
/*
* $Source: /CVS/ReactOS/reactos/lib/kjs/ksrc/js.c,v $
- * $Id: js.c,v 1.1 2004/01/10 20:38:17 arty Exp $
+ * $Id: js.c,v 1.2 2004/05/07 05:12:10 royce Exp $
*/
#include "js.h"
@@ -226,7 +226,7 @@
options->stacktrace_on_error,
s_stdin, s_stdout, s_stderr);
if (interp->vm == NULL)
- KeBugCheck(0);
+ KEBUGCHECK(0);
/* Set some options. */
interp->vm->warn_undef = options->warn_undef;
@@ -253,17 +253,17 @@
/* Define compiler to the virtual machine. */
bc = js_bc_read_data (js_compiler_bytecode, js_compiler_bytecode_len);
if (bc == NULL)
- KeBugCheck(0);
+ KEBUGCHECK(0);
result = js_vm_execute (interp->vm, bc);
js_bc_free (bc);
if (!result)
- KeBugCheck(0);
+ KEBUGCHECK(0);
}
/* Initialize our extensions. */
if (!js_define_module (interp, js_core_globals))
- KeBugCheck(0);
+ KEBUGCHECK(0);
/* Ok, we'r done. */
return interp;
reactos/ntoskrnl/inbv
diff -u -r1.6 -r1.7
--- inbv.c 20 Jan 2004 21:08:40 -0000 1.6
+++ inbv.c 7 May 2004 05:12:10 -0000 1.7
@@ -1,4 +1,4 @@
-/* $Id: inbv.c,v 1.6 2004/01/20 21:08:40 navaraf Exp $
+/* $Id: inbv.c,v 1.7 2004/05/07 05:12:10 royce Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -121,7 +121,7 @@
sizeof(BootVidFunctionTable));
if (!NT_SUCCESS(Status))
{
- KeBugCheck(0);
+ KEBUGCHECK(0);
}
BootVidDriverInstalled = TRUE;
CHECKPOINT;
@@ -140,7 +140,7 @@
0);
if (!NT_SUCCESS(Status))
{
- KeBugCheck(0);
+ KEBUGCHECK(0);
}
BootVidDriverInstalled = FALSE;
/* Notify the hal we have released the display. */
reactos/ntoskrnl/ke
diff -u -r1.41 -r1.42
--- catch.c 13 Mar 2004 18:21:57 -0000 1.41
+++ catch.c 7 May 2004 05:12:10 -0000 1.42
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: catch.c,v 1.41 2004/03/13 18:21:57 dwelch Exp $
+/* $Id: catch.c,v 1.42 2004/05/07 05:12:10 royce Exp $
*
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/ke/catch.c
@@ -169,7 +169,7 @@
{
DPRINT("ExceptionRecord->ExceptionAddress = 0x%x\n",
ExceptionRecord->ExceptionAddress );
- KeBugCheckWithTf(KMODE_EXCEPTION_NOT_HANDLED, 0, 0, 0, 0, Tf);
+ KEBUGCHECKWITHTF(KMODE_EXCEPTION_NOT_HANDLED, 0, 0, 0, 0, Tf);
}
}
}
CVSspam 0.2.8