Click here to Skip to main content
15,891,513 members
Articles / Programming Languages / C++

A heap or shared memory based mutex pool manager

Rate me:
Please Sign up or sign in to vote.
3.41/5 (14 votes)
24 Sep 2006CPOL3 min read 35.5K   482   19  
An article on a mutex pool manager based on heap or shared memory.
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
	ProjectType="Visual C++"
	Version="7.10"
	Name="stklib"
	ProjectGUID="{DED38A59-CA2D-424B-8305-81BD3238F791}"
	Keyword="Win32Proj">
	<Platforms>
		<Platform
			Name="Win32"/>
	</Platforms>
	<Configurations>
		<Configuration
			Name="Debug|Win32"
			OutputDirectory="Debug"
			IntermediateDirectory="Debug"
			ConfigurationType="4"
			CharacterSet="1">
			<Tool
				Name="VCCLCompilerTool"
				Optimization="0"
				AdditionalIncludeDirectories="..\include;..\util;..\os;..\mutex"
				PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
				MinimalRebuild="TRUE"
				BasicRuntimeChecks="3"
				RuntimeLibrary="3"
				UsePrecompiledHeader="0"
				WarningLevel="3"
				Detect64BitPortabilityProblems="TRUE"
				DebugInformationFormat="4"/>
			<Tool
				Name="VCCustomBuildTool"/>
			<Tool
				Name="VCLibrarianTool"
				OutputFile="$(OutDir)/stklib.lib"/>
			<Tool
				Name="VCMIDLTool"/>
			<Tool
				Name="VCPostBuildEventTool"/>
			<Tool
				Name="VCPreBuildEventTool"/>
			<Tool
				Name="VCPreLinkEventTool"/>
			<Tool
				Name="VCResourceCompilerTool"/>
			<Tool
				Name="VCWebServiceProxyGeneratorTool"/>
			<Tool
				Name="VCXMLDataGeneratorTool"/>
			<Tool
				Name="VCManagedWrapperGeneratorTool"/>
			<Tool
				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
		</Configuration>
		<Configuration
			Name="Release|Win32"
			OutputDirectory="Release"
			IntermediateDirectory="Release"
			ConfigurationType="4"
			CharacterSet="1">
			<Tool
				Name="VCCLCompilerTool"
				AdditionalIncludeDirectories="..\include;..\util;..\os;..\mutex"
				PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
				RuntimeLibrary="2"
				UsePrecompiledHeader="0"
				WarningLevel="3"
				Detect64BitPortabilityProblems="TRUE"
				DebugInformationFormat="3"/>
			<Tool
				Name="VCCustomBuildTool"/>
			<Tool
				Name="VCLibrarianTool"
				OutputFile="$(OutDir)/stklib.lib"/>
			<Tool
				Name="VCMIDLTool"/>
			<Tool
				Name="VCPostBuildEventTool"/>
			<Tool
				Name="VCPreBuildEventTool"/>
			<Tool
				Name="VCPreLinkEventTool"/>
			<Tool
				Name="VCResourceCompilerTool"/>
			<Tool
				Name="VCWebServiceProxyGeneratorTool"/>
			<Tool
				Name="VCXMLDataGeneratorTool"/>
			<Tool
				Name="VCManagedWrapperGeneratorTool"/>
			<Tool
				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
		</Configuration>
	</Configurations>
	<References>
	</References>
	<Files>
		<Filter
			Name="mutex"
			Filter="">
			<File
				RelativePath="..\mutex\Mutex.cpp">
			</File>
			<File
				RelativePath="..\mutex\Mutex.h">
			</File>
			<File
				RelativePath="..\mutex\MutexCommon.h">
			</File>
			<File
				RelativePath="..\mutex\MutexManager.cpp">
			</File>
			<File
				RelativePath="..\mutex\MutexManager.h">
			</File>
		</Filter>
		<Filter
			Name="os"
			Filter="">
			<File
				RelativePath="..\os\SysEvent.cpp">
			</File>
			<File
				RelativePath="..\os\SysEvent.h">
			</File>
			<File
				RelativePath="..\os\SysMemory.cpp">
			</File>
			<File
				RelativePath="..\os\SysMemory.h">
			</File>
			<File
				RelativePath="..\os\SysMutex.cpp">
			</File>
			<File
				RelativePath="..\os\SysMutex.h">
			</File>
		</Filter>
		<Filter
			Name="util"
			Filter="">
			<File
				RelativePath="..\util\AutoLock.h">
			</File>
		</Filter>
		<Filter
			Name="include"
			Filter="">
		</Filter>
	</Files>
	<Globals>
	</Globals>
</VisualStudioProject>

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
Email: fxu_36@hotmail.com

Comments and Discussions