logging: add a LogConfig::update() method
[folly.git] / folly / MicroLock.cpp
index 541eb711c1f7d8766dd7325270ef398fd839c4f9..e42bd6dd3d3b8d495091152746d7cb8ac3b4a31f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ retry:
       // sched_yield(), but more portable
       std::this_thread::yield();
     } else {
-      folly::asm_pause();
+      folly::asm_volatile_pause();
     }
     oldWord = wordPtr->load(std::memory_order_relaxed);
     goto retry;
@@ -65,4 +65,4 @@ retry:
     goto retry;
   }
 }
-}
+} // namespace folly