2018-02-08 23:00:20 +08:00
|
|
|
/*
|
2020-01-07 23:34:35 +08:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-02-08 23:00:20 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-02-08 23:00:20 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-01-07 23:34:35 +08:00
|
|
|
#include <mutex>
|
2018-02-08 23:00:20 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2020-01-07 23:34:35 +08:00
|
|
|
using SpinLock = std::mutex;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|