summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 83c83e45a..e14b84a81 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -345,10 +345,6 @@ public:
345 arb_wait_address = address; 345 arb_wait_address = address;
346 } 346 }
347 347
348 void SetGuestHandle(Handle handle) {
349 guest_handle = handle;
350 }
351
352 bool HasWakeupCallback() const { 348 bool HasWakeupCallback() const {
353 return wakeup_callback != nullptr; 349 return wakeup_callback != nullptr;
354 } 350 }
@@ -442,9 +438,6 @@ private:
442 /// If waiting for an AddressArbiter, this is the address being waited on. 438 /// If waiting for an AddressArbiter, this is the address being waited on.
443 VAddr arb_wait_address{0}; 439 VAddr arb_wait_address{0};
444 440
445 /// Handle used by guest emulated application to access this thread
446 Handle guest_handle = 0;
447
448 /// Handle used as userdata to reference this object when inserting into the CoreTiming queue. 441 /// Handle used as userdata to reference this object when inserting into the CoreTiming queue.
449 Handle callback_handle = 0; 442 Handle callback_handle = 0;
450 443