101 lines
2.4 KiB
C++
101 lines
2.4 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2013 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef XENIA_KERNEL_XBOXKRNL_XTHREAD_H_
|
|
#define XENIA_KERNEL_XBOXKRNL_XTHREAD_H_
|
|
|
|
#include <xenia/kernel/xobject.h>
|
|
|
|
#include <xenia/xbox.h>
|
|
|
|
|
|
namespace xe {
|
|
namespace cpu {
|
|
class XenonThreadState;
|
|
}
|
|
}
|
|
|
|
|
|
namespace xe {
|
|
namespace kernel {
|
|
|
|
|
|
class XEvent;
|
|
|
|
|
|
class XThread : public XObject {
|
|
public:
|
|
XThread(KernelState* kernel_state,
|
|
uint32_t stack_size,
|
|
uint32_t xapi_thread_startup,
|
|
uint32_t start_address, uint32_t start_context,
|
|
uint32_t creation_flags);
|
|
virtual ~XThread();
|
|
|
|
static XThread* GetCurrentThread();
|
|
static uint32_t GetCurrentThreadHandle();
|
|
static uint32_t GetCurrentThreadId(const uint8_t* thread_state_block);
|
|
|
|
uint32_t thread_state();
|
|
uint32_t thread_id();
|
|
uint32_t last_error();
|
|
void set_last_error(uint32_t error_code);
|
|
const char* name() const { return name_; }
|
|
void set_name(const char* name);
|
|
|
|
X_STATUS Create();
|
|
X_STATUS Exit(int exit_code);
|
|
|
|
void Execute();
|
|
|
|
static void EnterCriticalRegion();
|
|
static void LeaveCriticalRegion();
|
|
uint32_t RaiseIrql(uint32_t new_irql);
|
|
void LowerIrql(uint32_t new_irql);
|
|
|
|
X_STATUS Resume(uint32_t* out_suspend_count);
|
|
X_STATUS Suspend(uint32_t* out_suspend_count);
|
|
X_STATUS Delay(
|
|
uint32_t processor_mode, uint32_t alertable, uint64_t interval);
|
|
|
|
virtual void* GetWaitHandle();
|
|
|
|
private:
|
|
X_STATUS PlatformCreate();
|
|
void PlatformDestroy();
|
|
X_STATUS PlatformExit(int exit_code);
|
|
|
|
struct {
|
|
uint32_t stack_size;
|
|
uint32_t xapi_thread_startup;
|
|
uint32_t start_address;
|
|
uint32_t start_context;
|
|
uint32_t creation_flags;
|
|
} creation_params_;
|
|
|
|
uint32_t thread_id_;
|
|
void* thread_handle_;
|
|
uint32_t tls_address_;
|
|
uint32_t thread_state_address_;
|
|
cpu::XenonThreadState* thread_state_;
|
|
|
|
char* name_;
|
|
|
|
uint32_t irql_;
|
|
|
|
XEvent* event_;
|
|
};
|
|
|
|
|
|
} // namespace kernel
|
|
} // namespace xe
|
|
|
|
|
|
#endif // XENIA_KERNEL_XBOXKRNL_XTHREAD_H_
|