Changeset 7047 for trunk/src/win32k/kKrnlLib/include/OS2KSEM.h
- Timestamp:
- Oct 15, 2001, 12:50:21 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/include/OS2KSEM.h
r6815 r7047 1 /* $Id: OS2KSEM.h,v 1. 2 2001-09-26 03:52:36bird Exp $1 /* $Id: OS2KSEM.h,v 1.3 2001-10-14 22:50:21 bird Exp $ 2 2 * 3 3 * OS/2 kernel Semaphore functions. … … 163 163 164 164 165 #if 0166 165 /* 167 166 * Event semaphores. 168 167 */ 169 extern VOID KRNLCALL KSEMResetEvent(HKEV hkevent); 170 extern VOID KRNLCALL KSEMPostEvent(HKEV hkevent); 171 extern ULONG KRNLCALL KSEMWaitEvent(HKEV hkevent); 172 #endif 168 extern VOID KRNLCALL KSEMResetEvent(HKSEMEVT hkev); 169 extern VOID KRNLCALL OrgKSEMResetEvent(HKSEMEVT hkev); 170 extern VOID KRNLCALL KSEMPostEvent(HKSEMEVT hkev); 171 extern VOID KRNLCALL OrgKSEMPostEvent(HKSEMEVT hkev); 172 extern ULONG KRNLCALL KSEMWaitEvent(HKSEMEVT hkev, ULONG ulTimeout); 173 extern ULONG KRNLCALL OrgKSEMWaitEvent(HKSEMEVT hkev, ULONG ulTimeout); 174 175 176 /* 177 * Shared semaphores. 178 */ 179 extern ULONG KRNLCALL KSEMRequestExclusive(HKSEMSHR hkshr, ULONG ulTimeout); 180 extern ULONG KRNLCALL OrgKSEMRequestExclusive(HKSEMSHR hkshr, ULONG ulTimeout); 181 extern ULONG KRNLCALL KSEMRequestShared(HKSEMSHR hkshr, ULONG ulTimeout); 182 extern ULONG KRNLCALL OrgKSEMRequestShared(HKSEMSHR hkshr, ULONG ulTimeout); 183 173 184 174 185 /* … … 178 189 extern ULONG KRNLCALL KSEMAlloc(PHKSEM phksem, ULONG p1, ULONG p2); 179 190 extern ULONG KRNLCALL KSEMCreate(PHKSEM phksem, ULONG type); 180 extern ULONG KRNLCALL KSEMRequestExclusive(HKSEM hksem, ULONG );181 extern ULONG KRNLCALL KSEMRequestShared(HKSEM hksem, ULONG);182 191 extern VOID KRNLCALL KSEMDestroy(HKSEM hksem); 183 192 #endif 184 193 extern VOID KRNLCALL KSEMInit(PKSEM pksem, ULONG fulType, ULONG fulFlags); 185 194 extern VOID KRNLCALL OrgKSEMInit(PKSEM pksem, ULONG fulType, ULONG fulFlags); 186 #if 0187 extern VOID KRNLCALL KSEMQuery(HKSEM hksem, ULONG p2)188 195 extern VOID KRNLCALL KSEMRelease(HKSEM hksem); 196 extern VOID KRNLCALL OrgKSEMRelease(HKSEM hksem); 197 extern VOID KRNLCALL KSEMQuery(HKSEM hksem, PULONG pul); 198 extern VOID KRNLCALL OrgKSEMQuery(HKSEM hksem, PULONG pul); 199 189 200 #endif 190 #endif 191 201
Note:
See TracChangeset
for help on using the changeset viewer.