projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Better fix
[wxWidgets.git]
/
include
/
wx
/
thrimpl.cpp
diff --git
a/include/wx/thrimpl.cpp
b/include/wx/thrimpl.cpp
index ba4aa31bb72e9ba0a3dae9a1a900e28d7426da40..63b837fec65bd81f447a778eeb3e32a113d4364e 100644
(file)
--- a/
include/wx/thrimpl.cpp
+++ b/
include/wx/thrimpl.cpp
@@
-44,6
+44,14
@@
wxMutexError wxMutex::Lock()
return m_internal->Lock();
}
return m_internal->Lock();
}
+wxMutexError wxMutex::LockTimeout(unsigned long ms)
+{
+ wxCHECK_MSG( m_internal, wxMUTEX_INVALID,
+ _T("wxMutex::Lock(): not initialized") );
+
+ return m_internal->Lock(ms);
+}
+
wxMutexError wxMutex::TryLock()
{
wxCHECK_MSG( m_internal, wxMUTEX_INVALID,
wxMutexError wxMutex::TryLock()
{
wxCHECK_MSG( m_internal, wxMUTEX_INVALID,