Environment: Win32, C/C++
All three (3) can be used for a thread to signal to main() that it has completed an operation for example.
But which one is the fastest signal of all?
hmm...
|
|
Environment: Win32, C/C++ All three (3) can be used for a thread to signal to main() that it has completed an operation for example. But which one is the fastest signal of all? hmm...
|
||||||||||
|
|
|
All three options require a thread context switch to actually signal the receiving thread. It's quite likely that the overhead of the context switch will overwhelm any difference in processing cost in any of the APIs. The choice is likely best driven by the nature of the receiving thread, e.g. is it a UI thread, and/or does it carry out a message loop. That said, some fine detail includes:
|
||
|
|
|
|
SetEvent is by far the fastest and the simplest but it also can carry the least information. Basically all it can say is that something happened (the event was signaled) nothing more. |
||
|
|
|
|
Have not checked but (assuming you have someone waiting for the object) I would say SetEvent, SendMessage and finally PostMessage. Edit: The reasoning behind the above is simply that SendMessage is synchronous and PostMessage is asynchronous. I am not sure about the SetEvent but I would assume it to trigger something waiting for the event without having to wait for the message pump delivering the message. Thinking about it sending or posting probably doesn't matter, it is just a matter of if the sending party will wait or not. The internal processing is probably identical. However, neither posting nor sending a message is normally what you would use to send a signal to another thread. |
|||
|
|
|
|
If you look at MsgWaitForMultipleObjects vs WaitForMultipleObjects, you will see that the maximum wait objects for MsgWaitForMultipleObjects is one less than WaitForMultipleObjects meaning that there is a hidden "on message event" so a message will have the overhead of a event + the message passing |
||
|