:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / ntoskrnl / ke / sem.c
1 /*
2  *  ReactOS kernel
3  *  Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$
20  *
21  * PROJECT:         ReactOS kernel
22  * FILE:            ntoskrnl/ke/sem.c
23  * PURPOSE:         Implements kernel semaphores
24  * PROGRAMMER:      David Welch (welch@mcmail.com)
25  * UPDATE HISTORY:
26  *                  Created 22/05/98
27  */
28
29 /* INCLUDES *****************************************************************/
30
31 #include <ddk/ntddk.h>
32 #include <internal/ke.h>
33 #include <internal/id.h>
34
35 #define NDEBUG
36 #include <internal/debug.h>
37
38 /* FUNCTIONS *****************************************************************/
39
40 VOID STDCALL 
41 KeInitializeSemaphore (PKSEMAPHORE      Semaphore,
42                        LONG             Count,
43                        LONG             Limit)
44 {
45    KeInitializeDispatcherHeader(&Semaphore->Header,
46                                 InternalSemaphoreType,
47                                 sizeof(KSEMAPHORE)/sizeof(ULONG),
48                                 Count);
49    Semaphore->Limit=Limit;
50 }
51
52 LONG STDCALL 
53 KeReadStateSemaphore (PKSEMAPHORE       Semaphore)
54 {
55    return(Semaphore->Header.SignalState);
56 }
57
58 LONG STDCALL 
59 KeReleaseSemaphore (PKSEMAPHORE Semaphore,
60                     KPRIORITY   Increment,
61                     LONG                Adjustment,
62                     BOOLEAN             Wait)
63 /*
64  * FUNCTION: KeReleaseSemaphore releases a given semaphore object. This
65  * routine supplies a runtime priority boost for waiting threads. If this
66  * call sets the semaphore to the Signaled state, the semaphore count is
67  * augmented by the given value. The caller can also specify whether it
68  * will call one of the KeWaitXXX routines as soon as KeReleaseSemaphore
69  * returns control.
70  * ARGUMENTS:
71  *       Semaphore = Points to an initialized semaphore object for which the
72  *                   caller provides the storage.
73  *       Increment = Specifies the priority increment to be applied if
74  *                   releasing the semaphore causes a wait to be 
75  *                   satisfied.
76  *       Adjustment = Specifies a value to be added to the current semaphore
77  *                    count. This value must be positive
78  *       Wait = Specifies whether the call to KeReleaseSemaphore is to be
79  *              followed immediately by a call to one of the KeWaitXXX.
80  * RETURNS: If the return value is zero, the previous state of the semaphore
81  *          object is Not-Signaled.
82  */
83 {
84    ULONG InitialState;
85   
86    DPRINT("KeReleaseSemaphore(Semaphore %x, Increment %d, Adjustment %d, "
87           "Wait %d)\n", Semaphore, Increment, Adjustment, Wait);
88    
89    KeAcquireDispatcherDatabaseLock(Wait);
90    
91    InitialState = Semaphore->Header.SignalState;
92    if (Semaphore->Limit < InitialState + Adjustment ||
93        InitialState > InitialState + Adjustment)
94      {
95         ExRaiseStatus(STATUS_SEMAPHORE_LIMIT_EXCEEDED);
96      }
97    
98    Semaphore->Header.SignalState += Adjustment;
99    if (InitialState == 0)
100      {
101        KeDispatcherObjectWake(&Semaphore->Header);
102      }
103    
104   KeReleaseDispatcherDatabaseLock(Wait);
105   return(InitialState);
106 }
107
108 /* EOF */