mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
This reverts commit 7d4e70a25b.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
15 lines
187 B
C++
15 lines
187 B
C++
/*
|
|
* Copyright (C) 2018-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mutex>
|
|
|
|
namespace NEO {
|
|
using SpinLock = std::mutex;
|
|
} // namespace NEO
|