forked from eden-emu/eden
		
	kernel/thread: Make GetFreeThreadLocalSlot() reference parameter a const reference
This function only reads the data being referenced, it doesn't modify it, so we can turn the reference into a const reference.
This commit is contained in:
		
							parent
							
								
									16c5f5fe1b
								
							
						
					
					
						commit
						12afa56830
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -252,7 +252,8 @@ void Thread::ResumeFromWait() { | |||
|  * slot: The index of the first free slot in the indicated page. | ||||
|  * alloc_needed: Whether there's a need to allocate a new TLS page (All pages are full). | ||||
|  */ | ||||
| static std::tuple<u32, u32, bool> GetFreeThreadLocalSlot(std::vector<std::bitset<8>>& tls_slots) { | ||||
| static std::tuple<u32, u32, bool> GetFreeThreadLocalSlot( | ||||
|     const std::vector<std::bitset<8>>& tls_slots) { | ||||
|     // Iterate over all the allocated pages, and try to find one where not all slots are used.
 | ||||
|     for (unsigned page = 0; page < tls_slots.size(); ++page) { | ||||
|         const auto& page_tls_slots = tls_slots[page]; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Lioncash
						Lioncash