mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	Kernel/Semaphore: Small style change
This commit is contained in:
		@@ -34,7 +34,7 @@ public:
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    ResultVal<bool> WaitSynchronization() override {
 | 
			
		||||
        bool wait = available_count == 0;
 | 
			
		||||
        bool wait = !IsAvailable();
 | 
			
		||||
 | 
			
		||||
        if (wait) {
 | 
			
		||||
            Kernel::WaitCurrentThread(WAITTYPE_SEMA, GetHandle());
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user