mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-23 11:16:57 -04:00
sm: reimplement using tipc instead of cmif (probably broken, untested)
This commit is contained in:
parent
58776f5ba8
commit
57c8bc432d
27 changed files with 904 additions and 735 deletions
|
@ -57,7 +57,7 @@ namespace ams::tipc {
|
|||
public:
|
||||
constexpr ObjectManagerBase() = default;
|
||||
|
||||
void Initialize(os::WaitableManagerType *manager, Entry *entries, size_t max_objects) {
|
||||
void InitializeImpl(os::WaitableManagerType *manager, Entry *entries, size_t max_objects) {
|
||||
/* Set our waitable manager. */
|
||||
m_waitable_manager = manager;
|
||||
|
||||
|
@ -179,7 +179,7 @@ namespace ams::tipc {
|
|||
constexpr ObjectManager() = default;
|
||||
|
||||
void Initialize(os::WaitableManagerType *manager) {
|
||||
this->Initialize(manager, m_entries_storage, MaxObjects);
|
||||
this->InitializeImpl(manager, m_entries_storage, MaxObjects);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue