mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Change-Id: Ie2d0b6551cdecf45b58184c2c5364b8c09b60d38 Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
15 lines
187 B
C++
15 lines
187 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mutex>
|
|
|
|
namespace NEO {
|
|
using SpinLock = std::mutex;
|
|
} // namespace NEO
|