Click here to Skip to main content
15,885,278 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 131.9K   1.6K   39  
A template class to simplify and provide type safe access to Thread Local Storage data.
#include "stdafx.h"
#include "Sample.h"
#include "SampleAPI.h"

void SAMPLE_API SetSampleData(DWORD dwData)
{
#ifndef __USES_SIMPLE_THREADDATA

	CSampleThreadData& threadData = CSampleThreadData::Instance();
	threadData.SetData(dwData);

#else __USES_SIMPLE_THREADDATA

	_ThreadInfo& pThreadInfo = CSimpleThreadInfo::Value();
	pThreadInfo.SetData(dwData);

#endif __USES_SIMPLE_THREADDATA
}

DWORD SAMPLE_API GetSampleData(void)
{
#ifndef __USES_SIMPLE_THREADDATA

	CSampleThreadData& threadData = CSampleThreadData::Instance();
	return threadData.GetData();

#else __USES_SIMPLE_THREADDATA

	_ThreadInfo& pThreadInfo = CSimpleThreadInfo::Value();
	return pThreadInfo.GetData();

#endif __USES_SIMPLE_THREADDATA
}

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