|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
ReleaseSemaphore
The ReleaseSemaphore function increases the count of the specified semaphore object by a specified
amount.
BOOL ReleaseSemaphore(
HANDLE hSemaphore,
| // handle of the semaphore object
| LONG lReleaseCount,
| // amount to add to current count
| LPLONG lpPreviousCount
| // address of previous count
| );
|
|
Parameters
hSemaphore
Identifies the semaphore object. The CreateSemaphore or OpenSemaphore function returns this handle.
Windows NT: This handle must have SEMAPHORE_MODIFY_STATE access. For more information,
see Interprocess Synchronization Objects.
lReleaseCount
Specifies the amount by which the semaphore object's current count is to be
increased. The value must be greater than zero. If the specified amount would
cause the semaphore's count to exceed the maximum count that was specified when
the semaphore was created, the count is not changed and the function returns
FALSE.
lpPreviousCount
Points to a 32-bit variable to receive the previous count for the semaphore.
This parameter can be NULL if the previous count is not required.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error
information, call GetLastError.
Remarks
The state of a semaphore object is signaled when its count is greater than
zero and nonsignaled when its count is equal to zero. The process that calls the CreateSemaphore function specifies the semaphore's initial count. Each time a waiting thread
is released because of the semaphore's signaled state, the count of the
semaphore is decreased by one.
Typically, an application uses a semaphore to limit the number of threads
using a resource. Before a thread uses the resource, it specifies the semaphore
handle in a call to one of the wait functions. When the wait function returns, it decreases the semaphore's count by one.
When the thread has finished using the resource, it calls ReleaseSemaphore to increase the semaphore's count by one.
Another use of ReleaseSemaphore is during an application's initialization. The application can create a
semaphore with an initial count of zero. This sets the semaphore's state to
nonsignaled and blocks all threads from accessing the protected resource. When the
application finishes its initialization, it uses ReleaseSemaphore to increase the count to its maximum value, to permit normal access to the
protected resource.
See Also
CreateSemaphore, OpenSemaphore
| 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
|