summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-03-17 10:56:00 +0100
committerMichal Krol <michal@vmware.com>2009-03-17 10:56:00 +0100
commitc337bafeb99d1fb6b4f04a61b8e4a06caff11766 (patch)
treecc3e30e62d443fad68a2de6b2b0be64b491a555a /src
parent1e23dac869ccc08cbb959c63fedb3c82d3187f5a (diff)
gallium: Use `_new' name, `new' is a reserved keyword in C++.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/include/pipe/p_atomic.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gallium/include/pipe/p_atomic.h b/src/gallium/include/pipe/p_atomic.h
index fb370b0d0e..eb27558642 100644
--- a/src/gallium/include/pipe/p_atomic.h
+++ b/src/gallium/include/pipe/p_atomic.h
@@ -61,9 +61,9 @@ p_atomic_dec(struct pipe_atomic *v)
}
static INLINE int32_t
-p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t new)
+p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t _new)
{
- return __sync_val_compare_and_swap(&v->count, old, new);
+ return __sync_val_compare_and_swap(&v->count, old, _new);
}
#elif (defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY) || defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT)) /* (defined(PIPE_CC_GCC)) */
@@ -78,7 +78,7 @@ struct pipe_atomic
#define p_atomic_dec_zero(_v) ((boolean) --(_v)->count)
#define p_atomic_inc(_v) ((void) (_v)->count++)
#define p_atomic_dec(_v) ((void) (_v)->count--)
-#define p_atomic_cmpxchg(_v, old, new) ((_v)->count == old ? (_v)->count = (new) : (_v)->count)
+#define p_atomic_cmpxchg(_v, old, _new) ((_v)->count == old ? (_v)->count = (_new) : (_v)->count)
#elif (defined(PIPE_ARCH_X86) && defined(PIPE_CC_MSVC)) /* (defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY) || defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT)) */
@@ -128,7 +128,7 @@ p_atomic_dec(struct pipe_atomic *v)
}
static INLINE int32_t
-p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t new)
+p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t _new)
{
int32_t *pcount = &v->count;
int32_t orig;
@@ -136,7 +136,7 @@ p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t new)
__asm {
mov ecx, [pcount]
mov eax, [old]
- mov edx, [new]
+ mov edx, [_new]
lock cmpxchg [ecx], edx
mov [orig], eax
}
@@ -173,9 +173,9 @@ p_atomic_dec(struct pipe_atomic *v)
}
static INLINE int32_t
-p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t new)
+p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t _new)
{
- return InterlockedCompareExchange(&v->count, new, old);
+ return InterlockedCompareExchange(&v->count, _new, old);
}
#else /* (defined(PIPE_SUBSYSTEM_WINDOWS_USER)) */
@@ -241,14 +241,14 @@ p_atomic_dec_zero(struct pipe_atomic *v)
}
static INLINE int32_t
-p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t new)
+p_atomic_cmpxchg(struct pipe_atomic *v, int32_t old, int32_t _new)
{
int32_t ret;
pipe_mutex_lock(v->mutex);
ret = v->count;
if (ret == old)
- v->count = new;
+ v->count = _new;
pipe_mutex_unlock(v->mutex);
return ret;