Kernel: Mark private members of SharedCommittedCowPages as private

They were marked public, which seems like an obvious typo.
This commit is contained in:
Andrew Kaster 2021-10-31 16:41:43 -06:00 committed by Andreas Kling
parent 16d8556472
commit 542640e766
Notes: sideshowbarker 2024-07-18 01:07:03 +09:00

View file

@ -75,7 +75,7 @@ private:
[[nodiscard]] NonnullRefPtr<PhysicalPage> take_one();
void uncommit_one();
public:
private:
Spinlock m_lock;
CommittedPhysicalPageSet m_committed_pages;
};