mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixed LF_BACKOFF calls
This commit is contained in:
@ -5560,7 +5560,7 @@ public:
|
||||
MY_MEMORY_ORDER_RELAXED))
|
||||
{
|
||||
old&= ACQUIRED | RECOVERED;
|
||||
(void) LF_BACKOFF;
|
||||
(void) LF_BACKOFF();
|
||||
}
|
||||
}
|
||||
bool acquire_recovered()
|
||||
@ -5573,7 +5573,7 @@ public:
|
||||
if (!(old & RECOVERED) || (old & ACQUIRED))
|
||||
return false;
|
||||
old= RECOVERED;
|
||||
(void) LF_BACKOFF;
|
||||
(void) LF_BACKOFF();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user