mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-04 07:38:47 +00:00 
			
		
		
		
	kernel/thread: Include thread-related enums within the kernel namespace
Previously, these were sitting outside of the Kernel namespace, which doesn't really make sense, given they're related to the Thread class which is within the Kernel namespace.
This commit is contained in:
		
							parent
							
								
									5dfa7b74b5
								
							
						
					
					
						commit
						ca3d9d659e
					
				
					 6 changed files with 39 additions and 37 deletions
				
			
		| 
						 | 
				
			
			@ -108,7 +108,7 @@ void File::Read(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    std::chrono::nanoseconds read_timeout_ns{backend->GetReadDelayNs(length)};
 | 
			
		||||
    ctx.SleepClientThread(Kernel::GetCurrentThread(), "file::read", read_timeout_ns,
 | 
			
		||||
                          [](Kernel::SharedPtr<Kernel::Thread> thread,
 | 
			
		||||
                             Kernel::HLERequestContext& ctx, ThreadWakeupReason reason) {
 | 
			
		||||
                             Kernel::HLERequestContext& ctx, Kernel::ThreadWakeupReason reason) {
 | 
			
		||||
                              // Nothing to do here
 | 
			
		||||
                          });
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue