bnicholes 2002/07/18 16:02:19
Modified: include apr_atomic.h Log: Needed to swap the second and third parameters in the macro for NetWare. Revision Changes Path 1.33 +1 -1 apr/include/apr_atomic.h Index: apr_atomic.h =================================================================== RCS file: /home/cvs/apr/include/apr_atomic.h,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- apr_atomic.h 5 Jul 2002 20:51:39 -0000 1.32 +++ apr_atomic.h 18 Jul 2002 23:02:19 -0000 1.33 @@ -165,7 +165,7 @@ #define apr_atomic_set(mem, val) (*mem = val) #define apr_atomic_read(mem) (*mem) #define apr_atomic_init(pool) APR_SUCCESS -#define apr_atomic_cas(mem,with,cmp) atomic_cmpxchg(mem,with,cmp) +#define apr_atomic_cas(mem,with,cmp) atomic_cmpxchg(mem,cmp,with) #elif defined(__FreeBSD__)
