Ignore:
Timestamp:
Apr 20, 2004, 12:11:44 PM (21 years ago)
Author:
sandervl
Message:

KSO: Update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/gen_object.cpp

    r6375 r10587  
    1 /* $Id: gen_object.cpp,v 1.12 2001-07-20 15:34:16 sandervl Exp $ */
     1/* $Id: gen_object.cpp,v 1.13 2004-04-20 10:11:42 sandervl Exp $ */
    22/*
    33 * Generic Object Class for OS/2
    44 *
    55 * Allocated in shared memory, so other processes can access the objects
    6  * 
     6 *
    77 * NOTE: Requires safety precautions to use objects in multiple threads or processes
    88 *
     
    2222//******************************************************************************
    2323//******************************************************************************
    24 GenericObject::GenericObject(GenericObject **head, CRITICAL_SECTION *pLock)
     24GenericObject::GenericObject(GenericObject **head, VMutex *pLock)
    2525{
    2626  this->pLock = pLock;
     
    2828  this->next  = NULL;
    2929  refCount    = 1;
    30  
     30
    3131  fLinked     = FALSE;
    3232  fDeletePending = FALSE;
Note: See TracChangeset for help on using the changeset viewer.