Click here to Skip to main content
15,892,537 members
Articles / Programming Languages / C++

Simplify the Use of Thread Local Storage

Rate me:
Please Sign up or sign in to vote.
4.63/5 (10 votes)
14 Apr 20024 min read 132.2K   1.6K   39  
A template class to simplify and provide type safe access to Thread Local Storage data.
// stdafx.cpp : source file that includes just the standard includes
//	BDocTechFile.pch will be the pre-compiled header
//	stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"

///////////////////////////////////////////////////////////////////////////////
// TRACE macros

#ifdef _CHEAT_VC_CLASSVIEW
#define __hide	{
#define __end_hide	}
#elif (!defined __hide) && (!defined __end_hide)
#define __hide	
#define __end_hide	
#endif

__hide

#ifdef _DEBUG

#include <cstdio>
#include <cstdarg>

void AfxTrace(LPCWSTR lpszFormat, ...)
{
	va_list args;
	va_start(args, lpszFormat);

	int nBuf;
	WCHAR szBuffer[512];

	nBuf = _vsnwprintf(szBuffer, sizeof(szBuffer) / sizeof(WCHAR), lpszFormat, args);
	::OutputDebugStringW(szBuffer);

	va_end(args);
}

void AfxTrace(LPCSTR lpszFormat, ...)
{
	va_list args;
	va_start(args, lpszFormat);

	int nBuf;
	CHAR szBuffer[512];

	nBuf = _vsnprintf(szBuffer, sizeof(szBuffer), lpszFormat, args);
	::OutputDebugStringA(szBuffer);

	va_end(args);
}

#else // !_DEBUG

void AfxTrace(LPCWSTR lpszFormat, ...) {}
void AfxTrace(LPCSTR lpszFormat, ...) {}

#endif // _DEBUG

__end_hide

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
France France
Coming soon...

Comments and Discussions