Ignore:
Timestamp:
Oct 21, 2008, 11:49:28 PM (17 years ago)
Author:
[email protected]
Message:

Attempt to make the win2k3 bot be more useful for testing

RS=Maciej Stachowiak.

Force FastMalloc to make all allocated pages executable in
a vague hope this will allow the Win2k3 bot to be able to
run tests.

Filed Bug 21783: Need more granular control over allocation of executable memory
to cover a more granular version of this patch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/TCSystemAlloc.cpp

    r34756 r37772  
    225225  void* result = VirtualAlloc(NULL, size + extra,
    226226                              MEM_RESERVE | MEM_COMMIT | MEM_TOP_DOWN,
    227                               PAGE_READWRITE);
     227                              PAGE_EXECUTE_READWRITE);
    228228
    229229  if (result == NULL) {
Note: See TracChangeset for help on using the changeset viewer.