2014-04-10 19:58:28 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 03:49:13 -05:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-10 19:58:28 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-04-10 22:15:07 -04:00
|
|
|
namespace HLE {
|
2014-04-10 19:58:28 -04:00
|
|
|
|
2014-06-05 00:26:48 -04:00
|
|
|
extern bool g_reschedule; ///< If true, immediately reschedules the CPU to a new thread
|
|
|
|
|
2014-06-01 21:42:50 -04:00
|
|
|
void Reschedule(const char *reason);
|
2014-05-14 20:49:02 -04:00
|
|
|
|
2014-04-10 21:30:00 -04:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
|
|
|
|
} // namespace
|