reactos/ntoskrnl/ldr
diff -u -r1.24 -r1.25
--- sysdll.c 31 Aug 2004 20:17:18 -0000 1.24
+++ sysdll.c 11 Nov 2004 22:40:28 -0000 1.25
@@ -194,7 +194,7 @@
if (Process != CurrentProcess)
{
DPRINT("Attaching to Process\n");
- KeAttachProcess(Process);
+ KeAttachProcess((PKPROCESS)Process);
}
/*
reactos/ntoskrnl/ps
diff -u -r1.81 -r1.82
--- kill.c 31 Oct 2004 13:01:04 -0000 1.81
+++ kill.c 11 Nov 2004 22:40:30 -0000 1.82
@@ -1,4 +1,4 @@
-/* $Id: kill.c,v 1.81 2004/10/31 13:01:04 hbirr Exp $
+/* $Id: kill.c,v 1.82 2004/11/11 22:40:30 ion Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -288,7 +288,7 @@
CurrentProcess = PsGetCurrentProcess();
if (Process != CurrentProcess)
{
- KeAttachProcess( Process );
+ KeAttachProcess((PKPROCESS) Process );
}
ObCloseAllHandles(Process);
if (Process != CurrentProcess)
reactos/ntoskrnl/ps
diff -u -r1.149 -r1.150
--- process.c 10 Nov 2004 02:51:00 -0000 1.149
+++ process.c 11 Nov 2004 22:40:30 -0000 1.150
@@ -1,4 +1,4 @@
-/* $Id: process.c,v 1.149 2004/11/10 02:51:00 ion Exp $
+/* $Id: process.c,v 1.150 2004/11/11 22:40:30 ion Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -364,7 +364,7 @@
if (CurrentProcess != Process)
{
- KeAttachProcess(Process);
+ KeAttachProcess((PKPROCESS)Process);
}
KeAcquireSpinLock(&PsProcessListLock, &oldIrql);
@@ -486,7 +486,7 @@
}
DPRINT("TableBase %p ViewSize %lx\n", TableBase, ViewSize);
- KeAttachProcess(Process);
+ KeAttachProcess((PKPROCESS)Process);
/* Initialize the PEB */
RtlZeroMemory(Peb, sizeof(PEB));