Changeset 8890 for trunk/src


Ignore:
Timestamp:
Jul 18, 2002, 10:26:28 PM (23 years ago)
Author:
sandervl
Message:

DosInitializeCriticalSection bugfix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/odincrt/critsect.cpp

    r8218 r8890  
    1 /* $Id: critsect.cpp,v 1.2 2002-04-08 11:25:22 sandervl Exp $ */
     1/* $Id: critsect.cpp,v 1.3 2002-07-18 20:26:28 sandervl Exp $ */
    22/*
    33 * Critical sections
     
    7474    crit->OwningThread   = 0;
    7575
    76     rc = DosCreateMutexSem(pszSemName, &crit->hmtxLock, (pszSemName) ? DC_SEM_SHARED : 0, FALSE);
     76    rc = DosCreateMutexSem(pszSemName, &crit->hmtxLock, (pszSemName) ? DC_SEM_SHARED : 0, TRUE);
    7777    if(rc != NO_ERROR) {
    7878        DebugInt3();
Note: See TracChangeset for help on using the changeset viewer.