Ignore:
Timestamp:
Oct 25, 1999, 12:53:25 AM (26 years ago)
Author:
sandervl
Message:

Shared memory mapping changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/vmutex.cpp

    r730 r1432  
    1 /* $Id: vmutex.cpp,v 1.6 1999-08-28 19:33:44 sandervl Exp $ */
     1/* $Id: vmutex.cpp,v 1.7 1999-10-24 22:51:22 sandervl Exp $ */
    22
    33/*
     
    2222 APIRET rc;
    2323
    24   rc = DosCreateMutexSem(NULL, &sem_handle, (fShared) ? DC_SEM_SHARED : 0, FALSE);
     24  rc = DosCreateMutexSem(NULL, &sem_handle, (fShared == VMUTEX_SHARED) ? DC_SEM_SHARED : 0, FALSE);
    2525  if(rc != 0) {
    2626    dprintf(("Error creating mutex %X\n", rc));
Note: See TracChangeset for help on using the changeset viewer.