mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 17:16:58 +00:00
- Replace "VOLATILE" with "volatile"
svn path=/trunk/; revision=41428
This commit is contained in:
parent
eab042b178
commit
792cd5130f
2 changed files with 3 additions and 4 deletions
|
@ -467,7 +467,7 @@ InterlockedExchangeAdd(
|
|||
/*
|
||||
* PVOID
|
||||
* InterlockedExchangePointer(
|
||||
* IN OUT PVOID VOLATILE *Target,
|
||||
* IN OUT PVOID volatile *Target,
|
||||
* IN PVOID Value)
|
||||
*/
|
||||
#define InterlockedExchangePointer(Target, Value) \
|
||||
|
|
|
@ -48,7 +48,6 @@ extern "C" {
|
|||
#define UNALLIGNED
|
||||
|
||||
#define CONST const
|
||||
#define VOLATILE volatile
|
||||
|
||||
#define RESTRICTED_POINTER
|
||||
|
||||
|
@ -1213,8 +1212,8 @@ typedef enum _KSPIN_LOCK_QUEUE_NUMBER
|
|||
} KSPIN_LOCK_QUEUE_NUMBER, *PKSPIN_LOCK_QUEUE_NUMBER;
|
||||
|
||||
typedef struct _KSPIN_LOCK_QUEUE {
|
||||
struct _KSPIN_LOCK_QUEUE *VOLATILE Next;
|
||||
PKSPIN_LOCK VOLATILE Lock;
|
||||
struct _KSPIN_LOCK_QUEUE *volatile Next;
|
||||
PKSPIN_LOCK volatile Lock;
|
||||
} KSPIN_LOCK_QUEUE, *PKSPIN_LOCK_QUEUE;
|
||||
|
||||
typedef struct _KLOCK_QUEUE_HANDLE {
|
||||
|
|
Loading…
Reference in a new issue