From 4e4b27b6ab23b24e8c3c14aeaba117e98d453b96 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Wed, 28 Aug 2019 11:54:09 -0700 Subject: [PATCH] build fix --- node/Mutex.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/node/Mutex.hpp b/node/Mutex.hpp index cc0e1bea7..9c67e7935 100644 --- a/node/Mutex.hpp +++ b/node/Mutex.hpp @@ -36,7 +36,6 @@ public: { const uint16_t myTicket = __sync_fetch_and_add(&(const_cast(this)->nextTicket),1); while (nowServing != myTicket) { - pthread_yield_np(); __asm__ __volatile__("rep;nop"::); __asm__ __volatile__("":::"memory"); }