mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-30 15:39:02 -05:00 
			
		
		
		
	thread: Rename mask to affinity_masks.
This commit is contained in:
		| @@ -735,7 +735,7 @@ static ResultCode GetThreadCoreMask(Handle thread_handle, u32* core, u64* mask) | ||||
|     } | ||||
|  | ||||
|     *core = thread->ideal_core; | ||||
|     *mask = thread->mask; | ||||
|     *mask = thread->affinity_mask; | ||||
|  | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|   | ||||
| @@ -201,7 +201,7 @@ void Thread::ResumeFromWait() { | ||||
|  | ||||
|     status = THREADSTATUS_READY; | ||||
|  | ||||
|     boost::optional<s32> new_processor_id = GetNextProcessorId(mask); | ||||
|     boost::optional<s32> new_processor_id = GetNextProcessorId(affinity_mask); | ||||
|     if (!new_processor_id) { | ||||
|         new_processor_id = processor_id; | ||||
|     } | ||||
| @@ -308,7 +308,7 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, | ||||
|     thread->last_running_ticks = CoreTiming::GetTicks(); | ||||
|     thread->processor_id = processor_id; | ||||
|     thread->ideal_core = processor_id; | ||||
|     thread->mask = 1ULL << processor_id; | ||||
|     thread->affinity_mask = 1ULL << processor_id; | ||||
|     thread->wait_objects.clear(); | ||||
|     thread->mutex_wait_address = 0; | ||||
|     thread->condvar_wait_address = 0; | ||||
|   | ||||
| @@ -248,7 +248,7 @@ public: | ||||
|     std::shared_ptr<Scheduler> scheduler; | ||||
|  | ||||
|     u32 ideal_core{0xFFFFFFFF}; | ||||
|     u64 mask{0x1}; | ||||
|     u64 affinity_mask{0x1}; | ||||
|  | ||||
| private: | ||||
|     Thread(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 bunnei
					bunnei