kern: refactor to use m_ for member variables

This commit is contained in:
Michael Scire
2020-12-17 17:18:47 -08:00
parent b8471bcd4e
commit 92f1e2d100
135 changed files with 3727 additions and 3734 deletions

View File

@@ -24,9 +24,9 @@ namespace ams::kern {
public:
using ThreadTree = typename KThread::ConditionVariableThreadTreeType;
private:
ThreadTree tree;
ThreadTree m_tree;
public:
constexpr KConditionVariable() : tree() { /* ... */ }
constexpr KConditionVariable() : m_tree() { /* ... */ }
/* Arbitration. */
Result SignalToAddress(KProcessAddress addr);