mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-18 17:14:28 -04:00
kern: refactor to use m_ for member variables
This commit is contained in:
parent
0bf2ade76f
commit
968f50bc07
135 changed files with 3727 additions and 3734 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue