summaryrefslogtreecommitdiffstats
path: root/src/core/hle/lock.cpp
blob: 1c24c7ce956ad0f81dabd8c4a1f3b920cd15d859 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <core/hle/lock.h>

namespace HLE {
std::recursive_mutex g_hle_lock;
}