Changeset 657 for trunk/src/kernel32/vmutex.cpp
- Timestamp:
- Aug 24, 1999, 2:23:54 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/vmutex.cpp
r120 r657 1 /* $Id: vmutex.cpp,v 1. 4 1999-06-19 10:54:43sandervl Exp $ */1 /* $Id: vmutex.cpp,v 1.5 1999-08-24 12:23:25 sandervl Exp $ */ 2 2 3 /*4 *5 * Project Odin Software License can be found in LICENSE.TXT6 *7 */8 3 /* 9 4 * Mutex class 10 5 * 11 6 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl) 7 * 8 * 9 * Project Odin Software License can be found in LICENSE.TXT 12 10 * 13 11 */ … … 20 18 /******************************************************************************/ 21 19 /******************************************************************************/ 22 _ExportVMutex::VMutex() : waiting(0)20 VMutex::VMutex() : waiting(0) 23 21 { 24 22 APIRET rc; … … 32 30 /******************************************************************************/ 33 31 /******************************************************************************/ 34 _ExportVMutex::~VMutex()32 VMutex::~VMutex() 35 33 { 36 34 int i; … … 45 43 /******************************************************************************/ 46 44 /******************************************************************************/ 47 void _ExportVMutex::enter(ULONG timeout)45 void VMutex::enter(ULONG timeout) 48 46 { 49 47 if(sem_handle) { … … 55 53 /******************************************************************************/ 56 54 /******************************************************************************/ 57 void _ExportVMutex::leave()55 void VMutex::leave() 58 56 { 59 57 DosReleaseMutexSem(sem_handle);
Note:
See TracChangeset
for help on using the changeset viewer.