Author: sginsberg
Date: Sat Nov 29 04:22:57 2008
New Revision: 37718
URL: http://svn.reactos.org/svn/reactos?rev=37718&view=rev
Log:
- Don't redefine basic types
Modified:
trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h
Modified: trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/ext2/i…
==============================================================================
--- trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h [iso-8859-1] Sat Nov 29 04:22:57 2008
@@ -31,23 +31,8 @@
// Some type definitions...
// These are used later...
-typedef unsigned char UCHAR;
-typedef unsigned int UINT;
-typedef UCHAR BYTE;
-typedef UCHAR BOOLEAN; // winnt
-typedef BOOLEAN * PBOOLEAN; // winnt
-typedef void * PVOID64; // winnt
-typedef long LONG;
-typedef LONG HRESULT;
-
-
-#if defined(_M_IX86)
-#define FASTCALL _fastcall
-#else
-#define FASTCALL
-#endif
-
-
+typedef unsigned int UINT;
+typedef unsigned char BYTE;
// Common include files - should be in the include dir of the MS supplied IFS Kit
#include <ntifs.h>
Author: cgutman
Date: Fri Nov 28 20:57:21 2008
New Revision: 37714
URL: http://svn.reactos.org/svn/reactos?rev=37714&view=rev
Log:
- Fix behavior of kernel APCs interrupting waits on gate objects. Patch by Alex Ionescu.
Modified:
trunk/reactos/ntoskrnl/ke/apc.c
Modified: trunk/reactos/ntoskrnl/ke/apc.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/apc.c?rev=3771…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/apc.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/apc.c [iso-8859-1] Fri Nov 28 20:57:21 2008
@@ -242,7 +242,7 @@
if (Thread->Queue) Thread->Queue->CurrentCount++;
/* Put into deferred ready list with this status */
- Status = STATUS_KERNEL_APC;
+ Thread->WaitStatus = STATUS_KERNEL_APC;
KiInsertDeferredReadyList(Thread);
}