diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-05-18T17·23-0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18T17·23-0400 |
commit | 3f347c46272886a099852a4cd303ecf37a054de8 (patch) | |
tree | 5f95c9cc76267e5ae42890e72b990fb20a7b4368 /absl/base/internal/spinlock_linux.inc | |
parent | 62cf6a70414e15b356ec4f712ca8758133674f28 (diff) |
Fix build on riscv32 (#675)
Diffstat (limited to 'absl/base/internal/spinlock_linux.inc')
-rw-r--r-- | absl/base/internal/spinlock_linux.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/absl/base/internal/spinlock_linux.inc b/absl/base/internal/spinlock_linux.inc index 323edd62f464..e31c6ed477c0 100644 --- a/absl/base/internal/spinlock_linux.inc +++ b/absl/base/internal/spinlock_linux.inc @@ -46,6 +46,14 @@ static_assert(sizeof(std::atomic<uint32_t>) == sizeof(int), #endif #endif +#if defined(__NR_futex_time64) && !defined(SYS_futex_time64) +#define SYS_futex_time64 __NR_futex_time64 +#endif + +#if defined(SYS_futex_time64) && !defined(SYS_futex) +#define SYS_futex SYS_futex_time64 +#endif + extern "C" { ABSL_ATTRIBUTE_WEAK void AbslInternalSpinLockDelay( |