2014-05-09 21:11:18 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2014-05-13 21:29:31 -05:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-05-09 21:11:18 -05:00
|
|
|
|
2014-05-13 21:00:11 -05:00
|
|
|
class Thread;
|
|
|
|
|
2014-05-15 17:27:08 -05:00
|
|
|
/// Sets up the primary application thread
|
|
|
|
Handle __KernelSetupMainThread(s32 priority, int stack_size=0x4000);
|
2014-05-13 21:00:11 -05:00
|
|
|
|
2014-05-09 21:11:18 -05:00
|
|
|
void __KernelThreadingInit();
|
|
|
|
void __KernelThreadingShutdown();
|