Changeset 77972 in webkit


Ignore:
Timestamp:
Feb 8, 2011 2:31:34 PM (13 years ago)
Author:
dbates@webkit.org
Message:

2011-02-08 Daniel Bates <dbates@rim.com>

Rubber-stamped by Martin Robinson.

Rename enum ProtectionSeting [sic] to ProtectionSetting.

  • jit/ExecutableAllocator.cpp: (JSC::ExecutableAllocator::reprotectRegion):
  • jit/ExecutableAllocator.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r77948 r77972  
     12011-02-08  Daniel Bates  <dbates@rim.com>
     2
     3        Rubber-stamped by Martin Robinson.
     4
     5        Rename enum ProtectionSeting [sic] to ProtectionSetting.
     6
     7        * jit/ExecutableAllocator.cpp:
     8        (JSC::ExecutableAllocator::reprotectRegion):
     9        * jit/ExecutableAllocator.h:
     10
    1112011-02-08  Balazs Kelemen  <kbalazs@webkit.org>
    212
  • trunk/Source/JavaScriptCore/jit/ExecutableAllocator.cpp

    r76068 r77972  
    8686#endif
    8787
    88 void ExecutableAllocator::reprotectRegion(void* start, size_t size, ProtectionSeting setting)
     88void ExecutableAllocator::reprotectRegion(void* start, size_t size, ProtectionSetting setting)
    8989{
    9090    if (!pageSize)
  • trunk/Source/JavaScriptCore/jit/ExecutableAllocator.h

    r75454 r77972  
    168168
    169169class ExecutableAllocator {
    170     enum ProtectionSeting { Writable, Executable };
     170    enum ProtectionSetting { Writable, Executable };
    171171
    172172public:
     
    319319
    320320#if ENABLE(ASSEMBLER_WX_EXCLUSIVE)
    321     static void reprotectRegion(void*, size_t, ProtectionSeting);
     321    static void reprotectRegion(void*, size_t, ProtectionSetting);
    322322#endif
    323323
Note: See TracChangeset for help on using the changeset viewer.