- Fix building with old binutils. Thanks to Ge for the fix.

svn path=/trunk/; revision=20531
This commit is contained in:
Alex Ionescu 2006-01-02 18:03:19 +00:00
parent 3e90cec75b
commit 6f306a8b90
2 changed files with 4 additions and 2 deletions

View file

@ -291,7 +291,9 @@ Author:
#define EFLAGS_VIP 0x100000
#define EFLAG_SIGN 0x8000
#define EFLAG_ZERO 0x4000
#define EFLAG_SELECT (EFLAG_SIGN | EFLAG_ZERO)
#ifndef EFLAG_SELECT
#define EFLAG_SELECT (EFLAG_SIGN + EFLAG_ZERO)
#endif
//
// CR0

View file

@ -354,7 +354,7 @@ typedef struct _EX_PUSH_LOCK_WAIT_BLOCK
LONG ShareCount;
LONG Flags;
#if DBG
BOOL Signaled;
BOOLEAN Signaled;
EX_PUSH_LOCK NewValue;
EX_PUSH_LOCK OldValue;
PEX_PUSH_LOCK PushLock;