Fix compile failure on raspberry pi machines, issue #141

Former-commit-id: aaca32a5cd1bdb0314b4a57847938854b8a4fef2
This commit is contained in:
John Sully 2020-02-28 23:49:17 -05:00
parent f2c68909dc
commit 1d804ef499

View File

@ -299,7 +299,7 @@ extern "C" void fastlock_lock(struct fastlock *lock)
#if defined(__i386__) || defined(__amd64__)
__asm__ __volatile__ ("pause");
#elif defined(__arm__)
#elif defined(__aarch64__)
__asm__ __volatile__ ("yield");
#endif
if ((++cloops % 0x100000) == 0)