[XBDM] Cleanup Stubs

This commit is contained in:
Adrian
2025-07-21 20:17:37 +01:00
committed by Radosław Gliński
parent a717c0cd9f
commit 4702bfb94c
7 changed files with 437 additions and 74 deletions

View File

@@ -704,6 +704,14 @@ uint32_t XThread::suspend_count() {
return guest_object<X_KTHREAD>()->suspend_count;
}
X_FILETIME XThread::creation_time() {
return static_cast<X_FILETIME>(guest_object<X_KTHREAD>()->create_time);
}
uint32_t XThread::start_address() {
return guest_object<X_KTHREAD>()->start_address;
}
X_STATUS XThread::Resume(uint32_t* out_suspend_count) {
auto guest_thread = guest_object<X_KTHREAD>();