From 056af5306995176e457ddd471aa2b5c3a5223c4f Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Fri, 24 Apr 2009 02:39:58 +0200 Subject: [PATCH] more debug --- lib/base/thread.cpp | 2 ++ 1 file changed, 2 insertions(+) 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. */ -- 2.30.2