mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Kernel: Updated Event and Mutex to specify handle that they are blocking for.
This commit is contained in:
		@@ -42,7 +42,7 @@ public:
 | 
			
		||||
            if (std::find(waiting_threads.begin(), waiting_threads.end(), thread) == waiting_threads.end()) {
 | 
			
		||||
                waiting_threads.push_back(thread);
 | 
			
		||||
            }
 | 
			
		||||
            Kernel::WaitCurrentThread(WAITTYPE_EVENT);
 | 
			
		||||
            Kernel::WaitCurrentThread(WAITTYPE_EVENT, GetHandle());
 | 
			
		||||
        }
 | 
			
		||||
        if (reset_type != RESETTYPE_STICKY && !permanent_locked) {
 | 
			
		||||
            locked = true;
 | 
			
		||||
 
 | 
			
		||||
@@ -48,7 +48,7 @@ public:
 | 
			
		||||
        *wait = locked;
 | 
			
		||||
 | 
			
		||||
        if (locked) {
 | 
			
		||||
            Kernel::WaitCurrentThread(WAITTYPE_MUTEX);
 | 
			
		||||
            Kernel::WaitCurrentThread(WAITTYPE_MUTEX, GetHandle());
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        return 0;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user