Handle the new clock api "correctly." At least differentiate CLOCK_MONOTONIC and CLOCK_REALTIME. Mac OS X uses the former for timers and is forced to use the latter for the pthread functions.

This commit is contained in:
Steve Checkoway
2006-07-18 04:39:30 +00:00
parent df4d41da4a
commit 61739160fe
@@ -215,8 +215,9 @@ MutexImpl *MakeMutex( RageMutex *pParent )
#include <dlfcn.h>
#include "arch/ArchHooks/ArchHooks_Unix.h"
#else
typedef void *clockid_t;
static clockid_t CLOCK_REALTIME = NULL;
typedef int clockid_t;
static const clockid_t CLOCK_REALTIME = 0;
static const clockid_t CLOCK_MONOTONIC = 1;
#endif
namespace
{
@@ -271,6 +272,9 @@ namespace
dlclose( pLib );
pLib = NULL;
}
#elif defined(MACOSX)
void InitMonotonic() { bInitialized = true; }
clockid_t GetClock() { return CLOCK_MONOTONIC; }
#else
void InitMonotonic()
{