vote up 1 vote down star
1

In C++, Windows platform, I want to execute a set of function calls as atomic so that execution doesn't switches to other threads in my process. How do I go about doing that? Any ideas, hints?

EDIT: I have a piece of code like:

someObject->Restart();

WaitForSingleObject(handle, INFINITE);

Now the Restart() function does its work asynchronously, so it returns quickly and when that someObject is restarted it sends me an event from another thread where I signal the event handle on which I'm waiting and thus continue processing. But now the problem is that before the code reaches WaitForSingleObject() part, I receive the restart completion event and I signal the event and after that WaitForSingleObject() never returns since it is not signaled again. That's why I want to execute both Restart() and WaitForSingleObject() as atomic.

flag

46% accept rate
5  
The question is: Why do you want to do that? If you are trying to "synchronize" access to data structures by forbidding the kernel to switch threads, you're on a very wrong way of doing things. So please explain why you would want to do that. – Thorsten79 Nov 5 at 13:03
Even if you could do this, it'd break on a multicore system which would execute multiple threads simultaneously – jalf Nov 5 at 13:37
How are you signaling your handle? PulseEvent() or SetEvent()? – Matt Davis Nov 5 at 15:22
I'm signaling with SetEvent() – Manzoor Ahmed Nov 6 at 14:38

6 Answers

vote up 8 vote down

This is generally not possible. You can't force the OS to not switch to other threads.
What you can do is one of the following:

  • Use locks, mutexes, criticals sections or semaphores to synchronize a handful of threads that touch the same data.
  • Use basic operations that are atomic such as compare-and-exchange or atomic-add in the form of win32 api calls such as InterlockedIncrement() and InterlockedCompareExchange()
link|flag
vote up 0 vote down

Well, you could suspend (using SuspendThread) all other threads in the process, but I suppose you should rethink design of your program.

link|flag
vote up 5 vote down

You don't want all threads to wait, you just want to wait for the new thread to be done, without the risk of missing the signal. This can be done using a semaphore.

Create a semaphore known by both this code and the code eventually executed by Restart, using CreateSemaphore(NULL,0,1,NULL). In the code you've shown, you'll still use WaitforSingleObject to wait for your semaphore. When the thread executing the Release code is done with it's work, have it call ReleaseSemaphore.

If ReleaseSemaphore is called first, WaitforSingleObject will let you pass immediately. If WaitforSingleObject is called first, it will wait for ReleaseSemaphore.

MSDN should also help you.

link|flag
vote up 2 vote down

A general solution to lost event race is a counting semaphore.

link|flag
vote up 1 vote down

Are you using PulseEvent() to signal your handle? If so, that's the problem.

According to MSDN,

If no threads are waiting, or if no thread can be released immediately, PulseEvent simply sets the event object's state to nonsignaled and returns.

So if the handle is signaled before you wait on it, the handle is placed immediately in the nonsignaled state by PulseEvent(). That would appear to be why your are "missing" the event. To correct this, replace PulseEvent() with SetEvent().

With this scenario, though, you may need to reset the event after the wait is complete. This of course depends on if this code is executed more than once during the lifetime of your application. Assuming your waiting thread is the only thread that is waiting on the handle, use CreateEvent() to create an auto reset event. This will automatically reset the handle after your waiting thread is released, making it automatically available for the next time through.

link|flag
vote up 0 vote down

Although I worry about your design in general (ie you are making concurrent tasks sequential, thus losing all the benefits of the hard work to make it concurrent), I think I see the simple solution.

Change your event handle to be MANUAL RESET instead of AUTORESET. (see CreateEvent).

Then you won't miss the signal. After WaitForSingleObject(...), call ResetEvent().

EDIT: forget what I just said. That won't work. see comments below.

link|flag
This will not fix the problem. If he is using an auto-reset event already, the event remains signaled until a waiting thread is released. If there are no waiting threads, the event remains signaled until there is one. At that point, the thread is immediately released, and the event is reset. See the MSDN documentation on CreateEvent: msdn.microsoft.com/en-us/library/… – Matt Davis Nov 5 at 17:45
Oh, your right. I forgot. So he must be doing something wrong. Either some other thread is also waiting on the object, or he's using the broken PulseEvent or something. – tony Nov 6 at 7:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.