Commit 68e88433 authored by Davis King's avatar Davis King

Changed the spec for mutex::unlock() to say that it is illegal for a thread to

unlock a dlib::mutex it doesn't own.  This is technically a non-backwards
compatible change to the API but it has always been implemented in a way that
didn't allow this kind of double unlock() on non-Windows platforms.
Additionally, the recent change to the dlib::mutex implementation on windows
also no longer allows this kind of double unlock.
parent 213b0ff1
...@@ -175,11 +175,10 @@ namespace dlib ...@@ -175,11 +175,10 @@ namespace dlib
void unlock ( void unlock (
) const; ) const;
/*! /*!
requires
- the thread calling unlock() already has a lock on *this
ensures ensures
- if (*this is currently locked and owned by the thread calling unlock) then - #*this is unlocked (i.e. other threads may now lock this object)
- #*this is unlocked (i.e. other threads may now lock this object)
- else
- the call to unlock() has no effect
!*/ !*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment