1
1

At first glance there is no difference. But by rewriting the 2 lines I think I have removed some strnage chars in the file. So now it compiles in 64 bits architectures. AND RUN correctly :)

This commit was SVN r2139.
Этот коммит содержится в:
George Bosilca 2004-08-14 06:39:58 +00:00
родитель 82046fd2e5
Коммит 2ee4f0898c

Просмотреть файл

@ -70,7 +70,6 @@ static inline int ompi_atomic_cmpset_rel_32(volatile uint32_t *addr,
return ompi_atomic_cmpset_32(addr, oldval, newval);
}
static inline int ompi_atomic_cmpset_64(volatile uint64_t *addr,
uint64_t oldval,
uint64_t newval)
@ -93,7 +92,7 @@ static inline int ompi_atomic_cmpset_acq_64(volatile uint64_t *addr,
uint64_t oldval,
uint64_t newval)
{
return ompi_atomic_cpmset_64(addr, oldval, newval);
return ompi_atomic_cmpset_64( addr, oldval, newval );
}
@ -101,7 +100,7 @@ static inline int ompi_atomic_cmpset_rel_64(volatile uint64_t *addr,
uint64_t oldval,
uint64_t newval)
{
return ompi_atomic_cpmset_64(addr, oldval, newval);
return ompi_atomic_cmpset_64( addr, oldval, newval );
}
#endif /* ! OMPI_SYS_ATOMIC_H_INCLUDED */