ControllerInterface: Remove unused "force" parameter

I'm not sure when this nonsense of forcing locking the mutex when it's
already taken should have ever taken effect, but let's be thankful it
isn't now. That was a badly worded sentence.
This commit is contained in:
Jasper St. Pierre
2014-11-13 00:10:02 -08:00
parent 6aa1a59ee8
commit b5d4e8d37e
2 changed files with 6 additions and 10 deletions

View File

@ -120,8 +120,8 @@ public:
bool IsInit() const { return m_is_init; }
void UpdateReference(ControlReference* control, const ciface::Core::DeviceQualifier& default_device) const;
bool UpdateInput(const bool force = false);
bool UpdateOutput(const bool force = false);
bool UpdateInput();
bool UpdateOutput();
std::recursive_mutex update_lock;