mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	fsp_srv: Implement IFile::Flush.
This commit is contained in:
		@@ -73,7 +73,7 @@ public:
 | 
			
		||||
        : ServiceFramework("IFile"), backend(std::move(backend)) {
 | 
			
		||||
        static const FunctionInfo functions[] = {
 | 
			
		||||
            {0, &IFile::Read, "Read"},       {1, &IFile::Write, "Write"},
 | 
			
		||||
            {2, nullptr, "Flush"},           {3, &IFile::SetSize, "SetSize"},
 | 
			
		||||
            {2, &IFile::Flush, "Flush"},     {3, &IFile::SetSize, "SetSize"},
 | 
			
		||||
            {4, &IFile::GetSize, "GetSize"}, {5, nullptr, "OperateRange"},
 | 
			
		||||
        };
 | 
			
		||||
        RegisterHandlers(functions);
 | 
			
		||||
@@ -152,6 +152,14 @@ private:
 | 
			
		||||
        rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void Flush(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
        LOG_DEBUG(Service_FS, "called");
 | 
			
		||||
        backend->Flush();
 | 
			
		||||
 | 
			
		||||
        IPC::ResponseBuilder rb{ctx, 2};
 | 
			
		||||
        rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void SetSize(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
        IPC::RequestParser rp{ctx};
 | 
			
		||||
        const u64 size = rp.Pop<u64>();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user