Threads / Semaphore objects

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to learn threading synchronization using the .NET Threading
class. I am looking for the .NET Semaphore class that provides the same
semaphore functionality thats provided in the WIN32 API. Can you tell me
where it is?
 
Hi,

AFAIK there is not equivalent in the framework for Win32 semaphore, of
course you can P/Invoke this functionality, in the framework you can use a
Mutex for example.

I think I remember a couple of thread in
microsoft.public.dotnet.languages.csharp about this, do a google search

cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top