1 \section{\class{wxMutexLocker
}}\label{wxmutexlocker
}
3 This is a small helper class to be used with
\helpref{wxMutex
}{wxmutex
}
4 objects. A wxMutexLocker acquires a mutex lock in the constructor and releases
5 (or unlocks) the mutex in the destructor making it much more difficult to
6 forget to release a mutex (which, in general, will promptly lead to the serious
7 problems). See
\helpref{wxMutex
}{wxmutex
} for an example of wxMutexLocker
10 \wxheading{Derived from
}
16 \helpref{wxMutex
}{wxmutex
},
\helpref{wxCriticalSectionLocker
}{wxcriticalsectionlocker
}
18 \latexignore{\rtfignore{\wxheading{Members
}}}
20 \membersection{wxMutexLocker::wxMutexLocker
}\label{wxmutexlockerctor
}
22 \func{}{wxMutexLocker
}{\param{wxMutex *
}{mutex
}}
24 Constructs a wxMutexLocker object associated with mutex which must be non NULL
25 and locks it. Call
\helpref{IsLocked
}{wxmutexlockerisok
} to check if the mutex was
28 \membersection{wxMutexLocker::
\destruct{wxMutexLocker
}}\label{wxmutexlockerdtor
}
30 \func{}{\destruct{wxMutexLocker
}}{\void}
32 Destuctor releases the mutex if it was successfully acquired in the ctor.
34 \membersection{wxMutexLocker::IsOk
}\label{wxmutexlockerisok
}
36 \constfunc{bool
}{IsOk
}{\void}
38 Returns TRUE if mutex was acquired in the constructor, FALSE otherwise.