Changeset 77972 in webkit for trunk/Source/JavaScriptCore/jit
- Timestamp:
- Feb 8, 2011, 2:31:34 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore/jit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/ExecutableAllocator.cpp
r76068 r77972 86 86 #endif 87 87 88 void ExecutableAllocator::reprotectRegion(void* start, size_t size, ProtectionSet ing setting)88 void ExecutableAllocator::reprotectRegion(void* start, size_t size, ProtectionSetting setting) 89 89 { 90 90 if (!pageSize) -
trunk/Source/JavaScriptCore/jit/ExecutableAllocator.h
r75454 r77972 168 168 169 169 class ExecutableAllocator { 170 enum ProtectionSet ing { Writable, Executable };170 enum ProtectionSetting { Writable, Executable }; 171 171 172 172 public: … … 319 319 320 320 #if ENABLE(ASSEMBLER_WX_EXCLUSIVE) 321 static void reprotectRegion(void*, size_t, ProtectionSet ing);321 static void reprotectRegion(void*, size_t, ProtectionSetting); 322 322 #endif 323 323
Note:
See TracChangeset
for help on using the changeset viewer.