1
0
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:
Sergey Vojtovich
2017-12-08 21:35:29 +04:00
parent 3945049809
commit 927dd9f355
2 changed files with 6 additions and 6 deletions

View File

@ -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;
}