Fix return values.
OK christos.
This commit is contained in:
parent
004dc7976f
commit
191e94cd7e
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: atomic.h,v 1.3 2011/02/16 03:47:13 christos Exp $ */
|
||||
/* $NetBSD: atomic.h,v 1.4 2011/02/20 19:05:32 ws Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (C) 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
|
||||
@ -31,7 +31,7 @@
|
||||
*/
|
||||
static __inline isc_int32_t
|
||||
isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) {
|
||||
isc_int32_t prev = val;
|
||||
isc_int32_t prev = *p;
|
||||
|
||||
*p += val;
|
||||
|
||||
@ -53,11 +53,12 @@ isc_atomic_store(isc_int32_t *p, isc_int32_t val) {
|
||||
*/
|
||||
static __inline isc_int32_t
|
||||
isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) {
|
||||
isc_int32_t prev = *p;
|
||||
|
||||
if (*p == cmpval)
|
||||
*p = val;
|
||||
|
||||
return cmpval;
|
||||
return prev;
|
||||
}
|
||||
|
||||
#endif /* ISC_ATOMIC_H */
|
||||
|
Loading…
Reference in New Issue
Block a user