core: hle: kernel: Rename Thread to KThread.

This commit is contained in:
bunnei 2020-12-30 23:01:08 -08:00
parent 9f626d9b94
commit 3d70b4a4ea
45 changed files with 271 additions and 272 deletions

View file

@ -9,9 +9,9 @@
#include "core/hle/kernel/errors.h"
#include "core/hle/kernel/handle_table.h"
#include "core/hle/kernel/k_scheduler.h"
#include "core/hle/kernel/k_thread.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/process.h"
#include "core/hle/kernel/thread.h"
namespace Kernel {
namespace {