mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 10:23:42 +00:00 
			
		
		
		
	fsp_srv: Unstub SetCurrentProcess
This just acts as a basic setter for a given PID value and performs no further checking, so we can just store the passed in value.
This commit is contained in:
		
							parent
							
								
									30f228a8c9
								
							
						
					
					
						commit
						9f092554c2
					
				@ -733,7 +733,10 @@ FSP_SRV::FSP_SRV() : ServiceFramework("fsp-srv") {
 | 
			
		||||
FSP_SRV::~FSP_SRV() = default;
 | 
			
		||||
 | 
			
		||||
void FSP_SRV::SetCurrentProcess(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    LOG_WARNING(Service_FS, "(STUBBED) called");
 | 
			
		||||
    IPC::RequestParser rp{ctx};
 | 
			
		||||
    current_process_id = rp.Pop<u64>();
 | 
			
		||||
 | 
			
		||||
    LOG_DEBUG(Service_FS, "called. current_process_id=0x{:016X}", current_process_id);
 | 
			
		||||
 | 
			
		||||
    IPC::ResponseBuilder rb{ctx, 2};
 | 
			
		||||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
 | 
			
		||||
@ -32,6 +32,7 @@ private:
 | 
			
		||||
    void OpenPatchDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx);
 | 
			
		||||
 | 
			
		||||
    FileSys::VirtualFile romfs;
 | 
			
		||||
    u64 current_process_id = 0;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
} // namespace Service::FileSystem
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user