diff options
| author | bunnei <bunneidev@gmail.com> | 2017-12-31 17:23:36 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2017-12-31 17:23:36 -0500 |
| commit | 1cb978eb82253d6869d1c3729e976a98fb5a7a9c (patch) | |
| tree | 8e1045990a52e489b6e7441aca8c68893959d6e7 /src/core/hle/kernel/thread.h | |
| parent | 45debfe4fd11556d54793032fa22fbc10ecdfc50 (diff) | |
thread: Keep track of the initially created handle.
This is kinda crufty, but we need it for now to update guest state variables.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 25d678ba3..ed44ee933 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -212,6 +212,9 @@ public: std::string name; + /// Handle used by guest emulated application to access this thread + Handle guest_handle; + /// Handle used as userdata to reference this object when inserting into the CoreTiming queue. Handle callback_handle; |
