Changeset 77972 in webkit for trunk/Source/JavaScriptCore/jit


Ignore:
Timestamp:
Feb 8, 2011, 2:31:34 PM (14 years ago)
Author:
[email protected]
Message:

2011-02-08 Daniel Bates <[email protected]>

Rubber-stamped by Martin Robinson.

Rename enum ProtectionSeting [sic] to ProtectionSetting.

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

Legend:

Unmodified
Added
Removed
  • 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.