Changeset 729


Ignore:
Timestamp:
May 12, 2010, 10:17:49 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

webkit: Oops, restore accidentally deleted lines in r728.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/3rdparty/webkit/JavaScriptCore/runtime/Collector.cpp

    r728 r729  
    259259    DosAllocMem(&address, BLOCK_SIZE, PAG_COMMIT | PAG_READ | PAG_WRITE);
    260260    memset(address, 0, BLOCK_SIZE);
     261#elif PLATFORM(WINCE)
     262    void* address = VirtualAlloc(NULL, BLOCK_SIZE, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE);
    261263#elif PLATFORM(WIN_OS)
    262264#if COMPILER(MINGW)
Note: See TracChangeset for help on using the changeset viewer.