lock.cpp 209 B

123456789
  1. // Copyright 2017 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include <core/hle/lock.h>
  5. namespace HLE {
  6. std::recursive_mutex g_hle_lock;
  7. }