|
Event Objects
An event object is a synchronization object whose state can be explicitly set to signaled by
use of the SetEvent or PulseEvent function. Following are the two types of event object.
Object
| Description
| Manual-reset event
| An event object whose state remains signaled until it is explicitly reset to
nonsignaled by the ResetEvent function. While it is signaled, any number of waiting threads, or threads
that subsequently specify the same event object in one of the wait functions, can be released.
| Auto-reset event
| An event object whose state remains signaled until a single waiting thread is
released, at which time the system automatically sets the state to nonsignaled.
If no threads are waiting, the event object's state remains signaled.
|
The event object is useful in sending a signal to a thread indicating that a
particular event has occurred. For example, in overlapped input and output, the
system sets a specified event object to the signaled state when the overlapped
operation has been completed. A single thread can specify different event
objects in several simultaneous overlapped operations, then use one of the
multiple-object wait functions to wait for the state of any one of the event objects to be signaled.
A thread uses the CreateEvent function to create an event object. The creating thread specifies the initial
state of the object and whether it is a manual-reset or auto-reset event
object. The creating thread can also specify a name for the event object. Threads in
other processes can open a handle of an existing event object by specifying
its name in a call to the OpenEvent function. For additional information about names for mutex, event, semaphore,
and timer objects, see Interprocess Synchronization.
A thread can use the PulseEvent function to set the state of an event object to signaled and then reset it to
nonsignaled after releasing the appropriate number of waiting threads. For a
manual-reset event object, all waiting threads are released. For an auto-reset
event object, the function releases only a single waiting thread, even if
multiple threads are waiting. If no threads are waiting, PulseEvent simply sets the state of the event object to nonsignaled and returns.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|