kern: refactor to use m_ for member variables

This commit is contained in:
Michael Scire 2020-12-17 17:18:47 -08:00 committed by SciresM
parent 0bf2ade76f
commit 968f50bc07
135 changed files with 3727 additions and 3734 deletions

View file

@ -22,10 +22,10 @@ namespace ams::kern {
class KWaitObject : public KTimerTask {
private:
KThread::WaiterList wait_list;
bool timer_used;
KThread::WaiterList m_wait_list;
bool m_timer_used;
public:
constexpr KWaitObject() : wait_list(), timer_used() { /* ... */ }
constexpr KWaitObject() : m_wait_list(), m_timer_used() { /* ... */ }
virtual void OnTimer() override;
Result Synchronize(s64 timeout);