Use std::atomic

Replace amd::Atomic with std::atomic. Remove make_atomic uses by
converting the variable to std::atomic and making sure the memory
order is relaxed when synchronizes-with is not needed.

Delete utils/atomic.hpp.

Change-Id: I0b36db8d604a8510ac6e36b32885fd16a1b8ccfa


[ROCm/clr commit: 5d4b6f74d3]
这个提交包含在:
Laurent Morichetti
2020-08-28 21:38:05 -07:00
提交者 Saleel Kudchadker
父节点 92cf96e1d0
当前提交 c863b2074b
修改 22 个文件,包含 46 行新增495 行删除
+1 -1
查看文件
@@ -19,11 +19,11 @@
THE SOFTWARE. */
#include "thread/monitor.hpp"
#include "thread/atomic.hpp"
#include "thread/semaphore.hpp"
#include "thread/thread.hpp"
#include "utils/util.hpp"
#include <atomic>
#include <cstring>
#include <tuple>
#include <utility>