Rename Notifier::m_handlerMutex to Notifier::m_notifyMutex (#105)

A month ago, we discussed renaming this mutex to better reflect its current use, and this commit does that. The inline comment was also updated.
This commit is contained in:
Tyler Veness
2016-06-18 02:20:29 -07:00
committed by Peter Johnson
parent 3cacc2aba6
commit ecc210f99a
2 changed files with 6 additions and 6 deletions

View File

@@ -53,6 +53,6 @@ class Notifier : public ErrorBase {
// true if this is a periodic event
bool m_periodic = false;
// held by interrupt manager task while handler call is in progress
priority_mutex m_handlerMutex;
// held HAL notifier while Notifier::Notify() call is in progress
priority_mutex m_notifyMutex;
};