2014-05-10 02:11:18 +00: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-14 02:29:31 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-17 04:56:00 +00:00
|
|
|
enum ThreadPriority {
|
2014-05-21 01:02:35 +00:00
|
|
|
THREADPRIO_HIGHEST = 0, ///< Highest thread priority
|
|
|
|
THREADPRIO_DEFAULT = 16, ///< Default thread priority for userland apps
|
|
|
|
THREADPRIO_LOW = 31, ///< Low range of thread priority for userland apps
|
|
|
|
THREADPRIO_LOWEST = 63, ///< Thread priority max checked by svcCreateThread
|
2014-05-17 04:56:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ThreadProcessorId {
|
2014-05-21 01:02:35 +00:00
|
|
|
THREADPROCESSORID_0 = 0xFFFFFFFE, ///< Enables core appcode
|
|
|
|
THREADPROCESSORID_1 = 0xFFFFFFFD, ///< Enables core syscore
|
|
|
|
THREADPROCESSORID_ALL = 0xFFFFFFFC, ///< Enables both cores
|
2014-05-17 04:56:00 +00:00
|
|
|
};
|
|
|
|
|
2014-05-20 23:37:46 +00:00
|
|
|
namespace Kernel {
|
|
|
|
|
2014-05-17 04:56:00 +00:00
|
|
|
/// Creates a new thread - wrapper for external user
|
2014-05-20 23:37:46 +00:00
|
|
|
Handle CreateThread(const char* name, u32 entry_point, s32 priority, s32 processor_id,
|
|
|
|
u32 stack_top, int stack_size=Kernel::DEFAULT_STACK_SIZE);
|
2014-05-17 03:48:15 +00:00
|
|
|
|
2014-05-15 22:27:08 +00:00
|
|
|
/// Sets up the primary application thread
|
2014-05-20 23:37:46 +00:00
|
|
|
Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE);
|
2014-05-14 02:00:11 +00:00
|
|
|
|
2014-05-20 02:19:48 +00:00
|
|
|
/// Reschedules to the next available thread (call after current thread is suspended)
|
2014-05-20 23:37:46 +00:00
|
|
|
void Reschedule(const char* reason);
|
2014-05-20 02:19:48 +00:00
|
|
|
|
2014-05-21 01:00:10 +00:00
|
|
|
/// Resumes a thread from waiting by marking it as "ready"
|
|
|
|
void ResumeThreadFromWait(Handle handle);
|
|
|
|
|
2014-05-20 23:37:46 +00:00
|
|
|
/// Gets the current thread
|
|
|
|
Handle GetCurrentThread();
|
2014-05-17 04:56:00 +00:00
|
|
|
|
2014-05-17 17:47:55 +00:00
|
|
|
/// Put current thread in a wait state - on WaitSynchronization
|
2014-05-20 23:37:46 +00:00
|
|
|
void WaitThread_Synchronization();
|
|
|
|
|
|
|
|
/// Initialize threading
|
|
|
|
void ThreadingInit();
|
|
|
|
|
|
|
|
/// Shutdown threading
|
|
|
|
void ThreadingShutdown();
|
|
|
|
|
|
|
|
} // namespace
|