checkpoint. more conversion to automake.

This commit is contained in:
crs
2002-06-19 11:23:49 +00:00
parent f85457c49f
commit 9c7e863d77
31 changed files with 328 additions and 270 deletions

View File

@@ -7,7 +7,7 @@
CCondVarBase::CCondVarBase(CMutex* mutex) :
m_mutex(mutex)
#if defined(CONFIG_PLATFORM_WIN32)
#if WINDOWS_LIKE
, m_waitCountMutex()
#endif
{
@@ -45,7 +45,7 @@ CCondVarBase::getMutex() const
return m_mutex;
}
#if defined(CONFIG_PTHREADS)
#if HAVE_PTHREAD
#include "CThread.h"
#include <pthread.h>
@@ -169,9 +169,9 @@ CCondVarBase::wait(CStopwatch& timer, double timeout) const
}
}
#endif // CONFIG_PTHREADS
#endif // HAVE_PTHREAD
#if defined(CONFIG_PLATFORM_WIN32)
#if WINDOWS_LIKE
#include "CLock.h"
#include "CThreadRep.h"
@@ -312,4 +312,4 @@ CCondVarBase::wait(CStopwatch& timer, double timeout) const
result == WAIT_OBJECT_0 + 1);
}
#endif // CONFIG_PLATFORM_WIN32
#endif // WINDOWS_LIKE