2014-05-10 04:11:18 +02: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 04:29:31 +02:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-05-10 04:11:18 +02:00
|
|
|
|
2014-05-17 06:56:00 +02:00
|
|
|
enum ThreadPriority {
|
|
|
|
THREADPRIO_HIGHEST = 0,
|
|
|
|
THREADPRIO_DEFAULT = 16,
|
|
|
|
THREADPRIO_LOWEST = 31,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ThreadProcessorId {
|
|
|
|
THREADPROCESSORID_0 = 0xFFFFFFFE,
|
|
|
|
THREADPROCESSORID_1 = 0xFFFFFFFD,
|
|
|
|
THREADPROCESSORID_ALL = 0xFFFFFFFC,
|
|
|
|
};
|
|
|
|
|
2014-05-21 01:37:46 +02:00
|
|
|
namespace Kernel {
|
|
|
|
|
2014-05-17 06:56:00 +02:00
|
|
|
/// Creates a new thread - wrapper for external user
|
2014-05-21 01:37:46 +02: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 05:48:15 +02:00
|
|
|
|
2014-05-16 00:27:08 +02:00
|
|
|
/// Sets up the primary application thread
|
2014-05-21 01:37:46 +02:00
|
|
|
Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE);
|
2014-05-14 04:00:11 +02:00
|
|
|
|
2014-05-20 04:19:48 +02:00
|
|
|
/// Reschedules to the next available thread (call after current thread is suspended)
|
2014-05-21 01:37:46 +02:00
|
|
|
void Reschedule(const char* reason);
|
2014-05-20 04:19:48 +02:00
|
|
|
|
2014-05-21 01:37:46 +02:00
|
|
|
/// Gets the current thread
|
|
|
|
Handle GetCurrentThread();
|
2014-05-17 06:56:00 +02:00
|
|
|
|
2014-05-17 19:47:55 +02:00
|
|
|
/// Put current thread in a wait state - on WaitSynchronization
|
2014-05-21 01:37:46 +02:00
|
|
|
void WaitThread_Synchronization();
|
|
|
|
|
|
|
|
/// Initialize threading
|
|
|
|
void ThreadingInit();
|
|
|
|
|
|
|
|
/// Shutdown threading
|
|
|
|
void ThreadingShutdown();
|
|
|
|
|
|
|
|
} // namespace
|