(file) Return to Mutex.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Mutex.cpp between version 1.17 and 1.18

version 1.17, 2008/12/02 09:00:50 version 1.18, 2009/02/27 08:28:13
Line 215 
Line 215 
 static inline void _initialize(MutexRep& rep) static inline void _initialize(MutexRep& rep)
 { {
     rep.handle = CreateMutex(NULL, FALSE, NULL);     rep.handle = CreateMutex(NULL, FALSE, NULL);
       if (rep.handle == NULL)
       {
           throw Exception(MessageLoaderParms(
               "Common.InternalException.CREATE_MUTEX_FAILED",
               "CreateMutex failed : $0",
               PEGASUS_SYSTEM_ERRORMSG_NLS));
       }
     rep.count = 0;     rep.count = 0;
 } }
  


Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2