mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #4752 from FearlessTobi/port-2415
Port yuzu-emu/yuzu#2415: "kernel/wait_object: Make GetHighestPriorityReadyThread() a const member function"
This commit is contained in:
		
						commit
						2706a4d658
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -32,7 +32,7 @@ void WaitObject::RemoveWaitingThread(Thread* thread) { | ||||||
|         waiting_threads.erase(itr); |         waiting_threads.erase(itr); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| std::shared_ptr<Thread> WaitObject::GetHighestPriorityReadyThread() { | std::shared_ptr<Thread> WaitObject::GetHighestPriorityReadyThread() const { | ||||||
|     Thread* candidate = nullptr; |     Thread* candidate = nullptr; | ||||||
|     u32 candidate_priority = ThreadPrioLowest + 1; |     u32 candidate_priority = ThreadPrioLowest + 1; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -49,7 +49,7 @@ public: | ||||||
|     virtual void WakeupAllWaitingThreads(); |     virtual void WakeupAllWaitingThreads(); | ||||||
| 
 | 
 | ||||||
|     /// Obtains the highest priority thread that is ready to run from this object's waiting list.
 |     /// Obtains the highest priority thread that is ready to run from this object's waiting list.
 | ||||||
|     std::shared_ptr<Thread> GetHighestPriorityReadyThread(); |     std::shared_ptr<Thread> GetHighestPriorityReadyThread() const; | ||||||
| 
 | 
 | ||||||
|     /// Get a const reference to the waiting threads list for debug use
 |     /// Get a const reference to the waiting threads list for debug use
 | ||||||
|     const std::vector<std::shared_ptr<Thread>>& GetWaitingThreads() const; |     const std::vector<std::shared_ptr<Thread>>& GetWaitingThreads() const; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue