Merge yuzu-emu#13035

This commit is contained in:
yuzubot
2024-02-19 00:56:59 +00:00
parent cdf60ba092
commit 89dd56ae42
87 changed files with 2109 additions and 1828 deletions

View File

@ -28,11 +28,6 @@ namespace FileSystem {
class FileSystemController;
}
namespace Nvnflinger {
class HosBinderDriverServer;
class Nvnflinger;
} // namespace Nvnflinger
namespace SM {
class ServiceManager;
}
@ -236,20 +231,4 @@ private:
}
};
/**
* The purpose of this class is to own any objects that need to be shared across the other service
* implementations. Will be torn down when the global system instance is shutdown.
*/
class Services final {
public:
explicit Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system);
~Services();
void KillNVNFlinger();
private:
std::unique_ptr<Nvnflinger::HosBinderDriverServer> hos_binder_driver_server;
std::unique_ptr<Nvnflinger::Nvnflinger> nv_flinger;
};
} // namespace Service