2014-05-10 03:11:18 +01: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 03:29:31 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-05-17 05:56:00 +01:00
|
|
|
enum ThreadPriority {
|
2014-05-21 02:02:35 +01: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 05:56:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ThreadProcessorId {
|
2014-05-21 02:02:35 +01:00
|
|
|
THREADPROCESSORID_0 = 0xFFFFFFFE, ///< Enables core appcode
|
|
|
|
THREADPROCESSORID_1 = 0xFFFFFFFD, ///< Enables core syscore
|
|
|
|
THREADPROCESSORID_ALL = 0xFFFFFFFC, ///< Enables both cores
|
2014-05-17 05:56:00 +01:00
|
|
|
};
|
|
|
|
|
2014-05-22 23:50:36 +01:00
|
|
|
enum ThreadStatus {
|
|
|
|
THREADSTATUS_RUNNING = 1,
|
|
|
|
THREADSTATUS_READY = 2,
|
|
|
|
THREADSTATUS_WAIT = 4,
|
|
|
|
THREADSTATUS_SUSPEND = 8,
|
|
|
|
THREADSTATUS_DORMANT = 16,
|
|
|
|
THREADSTATUS_DEAD = 32,
|
|
|
|
THREADSTATUS_WAITSUSPEND = THREADSTATUS_WAIT | THREADSTATUS_SUSPEND
|
|
|
|
};
|
|
|
|
|
|
|
|
enum WaitType {
|
|
|
|
WAITTYPE_NONE,
|
|
|
|
WAITTYPE_SLEEP,
|
|
|
|
WAITTYPE_SEMA,
|
2014-06-06 03:35:36 +01:00
|
|
|
WAITTYPE_EVENT,
|
2014-05-22 23:50:36 +01:00
|
|
|
WAITTYPE_THREADEND,
|
|
|
|
WAITTYPE_VBLANK,
|
|
|
|
WAITTYPE_MUTEX,
|
|
|
|
WAITTYPE_SYNCH,
|
2014-07-07 03:48:19 +01:00
|
|
|
WAITTYPE_ARB,
|
2014-05-22 23:50:36 +01:00
|
|
|
};
|
|
|
|
|
2014-05-21 00:37:46 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2014-05-17 05:56:00 +01:00
|
|
|
/// Creates a new thread - wrapper for external user
|
2014-05-22 23:50:36 +01:00
|
|
|
Handle CreateThread(const char* name, u32 entry_point, s32 priority, u32 arg, s32 processor_id,
|
2014-05-21 00:37:46 +01:00
|
|
|
u32 stack_top, int stack_size=Kernel::DEFAULT_STACK_SIZE);
|
2014-05-17 04:48:15 +01:00
|
|
|
|
2014-05-15 23:27:08 +01:00
|
|
|
/// Sets up the primary application thread
|
2014-05-21 00:37:46 +01:00
|
|
|
Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE);
|
2014-05-14 03:00:11 +01:00
|
|
|
|
2014-05-20 03:19:48 +01:00
|
|
|
/// Reschedules to the next available thread (call after current thread is suspended)
|
2014-05-23 00:32:45 +01:00
|
|
|
void Reschedule();
|
2014-05-20 03:19:48 +01:00
|
|
|
|
2014-06-06 03:35:36 +01:00
|
|
|
/// Stops the current thread
|
|
|
|
void StopThread(Handle thread, const char* reason);
|
2014-05-22 23:50:36 +01:00
|
|
|
|
2014-05-21 02:00:10 +01:00
|
|
|
/// Resumes a thread from waiting by marking it as "ready"
|
|
|
|
void ResumeThreadFromWait(Handle handle);
|
|
|
|
|
2014-07-07 03:48:19 +01:00
|
|
|
/// Arbitrate the highest priority thread that is waiting
|
|
|
|
Handle ArbitrateHighestPriorityThread(u32 arbiter, u32 address);
|
|
|
|
|
|
|
|
/// Arbitrate all threads currently waiting...
|
|
|
|
void ArbitrateAllThreads(u32 arbiter, u32 address);
|
|
|
|
|
2014-05-23 00:06:12 +01:00
|
|
|
/// Gets the current thread handle
|
|
|
|
Handle GetCurrentThreadHandle();
|
2014-05-17 05:56:00 +01:00
|
|
|
|
2014-08-06 03:32:13 +01:00
|
|
|
/**
|
|
|
|
* Puts the current thread in the wait state for the given type
|
|
|
|
* @param wait_type Type of wait
|
|
|
|
* @param wait_handle Handle of Kernel object that we are waiting on, defaults to current thread
|
|
|
|
*/
|
2014-06-06 03:35:36 +01:00
|
|
|
void WaitCurrentThread(WaitType wait_type, Handle wait_handle=GetCurrentThreadHandle());
|
|
|
|
|
2014-05-17 18:47:55 +01:00
|
|
|
/// Put current thread in a wait state - on WaitSynchronization
|
2014-05-21 00:37:46 +01:00
|
|
|
void WaitThread_Synchronization();
|
|
|
|
|
2014-06-02 03:12:54 +01:00
|
|
|
/// Get the priority of the thread specified by handle
|
|
|
|
u32 GetThreadPriority(const Handle handle);
|
|
|
|
|
|
|
|
/// Set the priority of the thread specified by handle
|
|
|
|
Result SetThreadPriority(Handle handle, s32 priority);
|
|
|
|
|
2014-05-21 00:37:46 +01:00
|
|
|
/// Initialize threading
|
|
|
|
void ThreadingInit();
|
|
|
|
|
|
|
|
/// Shutdown threading
|
|
|
|
void ThreadingShutdown();
|
|
|
|
|
|
|
|
} // namespace
|