mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +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
|
* PVOID
|
||||||
* InterlockedExchangePointer(
|
* InterlockedExchangePointer(
|
||||||
* IN OUT PVOID VOLATILE *Target,
|
* IN OUT PVOID volatile *Target,
|
||||||
* IN PVOID Value)
|
* IN PVOID Value)
|
||||||
*/
|
*/
|
||||||
#define InterlockedExchangePointer(Target, Value) \
|
#define InterlockedExchangePointer(Target, Value) \
|
||||||
|
|
|
@ -48,7 +48,6 @@ extern "C" {
|
||||||
#define UNALLIGNED
|
#define UNALLIGNED
|
||||||
|
|
||||||
#define CONST const
|
#define CONST const
|
||||||
#define VOLATILE volatile
|
|
||||||
|
|
||||||
#define RESTRICTED_POINTER
|
#define RESTRICTED_POINTER
|
||||||
|
|
||||||
|
@ -1213,8 +1212,8 @@ typedef enum _KSPIN_LOCK_QUEUE_NUMBER
|
||||||
} KSPIN_LOCK_QUEUE_NUMBER, *PKSPIN_LOCK_QUEUE_NUMBER;
|
} KSPIN_LOCK_QUEUE_NUMBER, *PKSPIN_LOCK_QUEUE_NUMBER;
|
||||||
|
|
||||||
typedef struct _KSPIN_LOCK_QUEUE {
|
typedef struct _KSPIN_LOCK_QUEUE {
|
||||||
struct _KSPIN_LOCK_QUEUE *VOLATILE Next;
|
struct _KSPIN_LOCK_QUEUE *volatile Next;
|
||||||
PKSPIN_LOCK VOLATILE Lock;
|
PKSPIN_LOCK volatile Lock;
|
||||||
} KSPIN_LOCK_QUEUE, *PKSPIN_LOCK_QUEUE;
|
} KSPIN_LOCK_QUEUE, *PKSPIN_LOCK_QUEUE;
|
||||||
|
|
||||||
typedef struct _KLOCK_QUEUE_HANDLE {
|
typedef struct _KLOCK_QUEUE_HANDLE {
|
||||||
|
|
Loading…
Reference in a new issue