Ignore:
Timestamp:
Aug 24, 1999, 2:23:54 PM (26 years ago)
Author:
sandervl
Message:

VirtualQuery implemented + preliminary memory mapped code

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:43 sandervl Exp $ */
     1/* $Id: vmutex.cpp,v 1.5 1999-08-24 12:23:25 sandervl Exp $ */
    22
    3 /*
    4  *
    5  * Project Odin Software License can be found in LICENSE.TXT
    6  *
    7  */
    83/*
    94 * Mutex class
    105 *
    116 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
     7 *
     8 *
     9 * Project Odin Software License can be found in LICENSE.TXT
    1210 *
    1311 */
     
    2018/******************************************************************************/
    2119/******************************************************************************/
    22 _Export VMutex::VMutex() : waiting(0)
     20VMutex::VMutex() : waiting(0)
    2321{
    2422 APIRET rc;
     
    3230/******************************************************************************/
    3331/******************************************************************************/
    34 _Export VMutex::~VMutex()
     32VMutex::~VMutex()
    3533{
    3634 int i;
     
    4543/******************************************************************************/
    4644/******************************************************************************/
    47 void _Export VMutex::enter(ULONG timeout)
     45void VMutex::enter(ULONG timeout)
    4846{
    4947  if(sem_handle) {
     
    5553/******************************************************************************/
    5654/******************************************************************************/
    57 void _Export VMutex::leave()
     55void VMutex::leave()
    5856{
    5957  DosReleaseMutexSem(sem_handle);
Note: See TracChangeset for help on using the changeset viewer.