From 8989cc096d00e527c282dba26e9165530adfa993 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 9 Sep 2004 03:27:56 +0000 Subject: [PATCH] log TLS --- stepmania/src/StepMania.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 5df6701fbb..ef54fe3d62 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -14,6 +14,7 @@ #include "RageException.h" #include "RageMath.h" #include "RageDisplay.h" +#include "RageThreads.h" #include "arch/arch.h" #include "arch/LoadingWindow/LoadingWindow.h" @@ -1010,6 +1011,10 @@ int main(int argc, char* argv[]) * that to appear delayed. */ HOOKS->DumpDebugInfo(); +#if defined(HAVE_TLS) + LOG->Info( "TLS is %savailable", RageThread::GetSupportsTLS()? "":"not " ); +#endif + if( PREFSMAN->m_bFirstRun ) OnFirstRun();