Click here to Skip to main content
15,886,518 members
Articles / General Programming / Threads

Thread Synchronization with Semaphore

Rate me:
Please Sign up or sign in to vote.
4.00/5 (5 votes)
19 Nov 2011CPOL1 min read 54.9K   1.6K   31  
An introduction to semaphore in contrast to Monitor

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SemaphoreApp", "SemaphoreApp\SemaphoreApp.csproj", "{901FB49D-D89F-400C-8969-95D56C4D7908}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{901FB49D-D89F-400C-8969-95D56C4D7908}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{901FB49D-D89F-400C-8969-95D56C4D7908}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{901FB49D-D89F-400C-8969-95D56C4D7908}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{901FB49D-D89F-400C-8969-95D56C4D7908}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

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
Software Developer Sapient Corporation Pvt. Ltd.
India India
Software Devloper sience 2006. Experience on VB 6.0,C# Web, Windows and Distributed application like WCF etc. Currently working at Sapient Corporation Pvt. Ltd

Comments and Discussions