Ignore:
Timestamp:
Nov 8, 1999, 9:53:24 PM (26 years ago)
Author:
sandervl
Message:

Critical section Wine port + mmap fix (limit size of mmap files)

File:
1 edited

Legend:

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

    r1481 r1641  
    1 /* $Id: mmap.cpp,v 1.20 1999-10-27 18:11:39 sandervl Exp $ */
     1/* $Id: mmap.cpp,v 1.21 1999-11-08 20:53:24 sandervl Exp $ */
    22
    33/*
     
    7979                goto fail;
    8080        }
     81        //SvL: Temporary limitation of size (Warp Server Advanced doesn't allow
     82        //     one to reserve more than 450 MB of continuous memory; (Warp 4
     83        //     much less))
     84        if(mSize > 64*1024*1024) {
     85                mSize = 64*1024*1024;
     86        }
    8187  }
    8288
Note: See TracChangeset for help on using the changeset viewer.