function conflict with GCC-8

Identifiers with names starting with __ are reserved for the compiler and
core system libs only, random user programs are not supposed to use them.

Gbp-Pq: Name 010-__atomic_compare_exchange.patch
This commit is contained in:
Ubuntu Developers 2022-05-13 20:11:42 +08:00 committed by openKylinBot
parent 5905100e14
commit 171220c41f
1 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ typedef LONG volatile *interlocked_val;
#define atomic_inc(env, p) __atomic_inc(p)
#define atomic_dec(env, p) __atomic_dec(p)
#define atomic_compare_exchange(env, p, o, n) \
__atomic_compare_exchange((p), (o), (n))
db__atomic_compare_exchange((p), (o), (n))
static inline int __atomic_inc(db_atomic_t *p)
{
int temp;
@ -176,7 +176,7 @@ static inline int __atomic_dec(db_atomic_t *p)
* http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html
* which configure could be changed to use.
*/
static inline int __atomic_compare_exchange(
static inline int db__atomic_compare_exchange(
db_atomic_t *p, atomic_value_t oldval, atomic_value_t newval)
{
atomic_value_t was;