diff options
Diffstat (limited to 'lib/base/thread.cpp')
| -rw-r--r-- | lib/base/thread.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/base/thread.cpp b/lib/base/thread.cpp index db6deb35..56467597 100644 --- a/lib/base/thread.cpp +++ b/lib/base/thread.cpp @@ -90,6 +90,8 @@ int eThread::sync(void) int res; m_state.down(); /* this might block */ res = m_alive; + if (m_state.value() != 0) + eFatal("eThread::sync: m_state.value() == %d", m_state.value()); ASSERT(m_state.value() == 0); m_state.up(); return res; /* 0: thread is guaranteed not to run. 1: state unknown. */ |
