summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 564e1f27d..db01d6c8a 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -30,7 +30,7 @@ namespace Kernel {
30 30
31class KernelCore; 31class KernelCore;
32class ResourceLimit; 32class ResourceLimit;
33class Thread; 33class KThread;
34class TLSPage; 34class TLSPage;
35 35
36struct CodeSet; 36struct CodeSet;
@@ -252,17 +252,17 @@ public:
252 u64 GetTotalPhysicalMemoryUsedWithoutSystemResource() const; 252 u64 GetTotalPhysicalMemoryUsedWithoutSystemResource() const;
253 253
254 /// Gets the list of all threads created with this process as their owner. 254 /// Gets the list of all threads created with this process as their owner.
255 const std::list<const Thread*>& GetThreadList() const { 255 const std::list<const KThread*>& GetThreadList() const {
256 return thread_list; 256 return thread_list;
257 } 257 }
258 258
259 /// Registers a thread as being created under this process, 259 /// Registers a thread as being created under this process,
260 /// adding it to this process' thread list. 260 /// adding it to this process' thread list.
261 void RegisterThread(const Thread* thread); 261 void RegisterThread(const KThread* thread);
262 262
263 /// Unregisters a thread from this process, removing it 263 /// Unregisters a thread from this process, removing it
264 /// from this process' thread list. 264 /// from this process' thread list.
265 void UnregisterThread(const Thread* thread); 265 void UnregisterThread(const KThread* thread);
266 266
267 /// Clears the signaled state of the process if and only if it's signaled. 267 /// Clears the signaled state of the process if and only if it's signaled.
268 /// 268 ///
@@ -380,7 +380,7 @@ private:
380 std::array<u64, RANDOM_ENTROPY_SIZE> random_entropy{}; 380 std::array<u64, RANDOM_ENTROPY_SIZE> random_entropy{};
381 381
382 /// List of threads that are running with this process as their owner. 382 /// List of threads that are running with this process as their owner.
383 std::list<const Thread*> thread_list; 383 std::list<const KThread*> thread_list;
384 384
385 /// Address of the top of the main thread's stack 385 /// Address of the top of the main thread's stack
386 VAddr main_thread_stack_top{}; 386 VAddr main_thread_stack_top{};