mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	Merge pull request #1766 from Subv/log_cpu
Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1)
This commit is contained in:
		@@ -156,6 +156,9 @@ ResultStatus AppLoader_NCCH::LoadExec() {
 | 
			
		||||
        Kernel::g_current_process->resource_limit = Kernel::ResourceLimit::GetForCategory(
 | 
			
		||||
            static_cast<Kernel::ResourceLimitCategory>(exheader_header.arm11_system_local_caps.resource_limit_category));
 | 
			
		||||
 | 
			
		||||
        // Set the default CPU core for this process
 | 
			
		||||
        Kernel::g_current_process->ideal_processor = exheader_header.arm11_system_local_caps.ideal_processor;
 | 
			
		||||
 | 
			
		||||
        // Copy data while converting endianess
 | 
			
		||||
        std::array<u32, ARRAY_SIZE(exheader_header.arm11_kernel_caps.descriptors)> kernel_caps;
 | 
			
		||||
        std::copy_n(exheader_header.arm11_kernel_caps.descriptors, kernel_caps.size(), begin(kernel_caps));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user