Changeset 138474 in webkit


Ignore:
Timestamp:
Dec 26, 2012 2:27:21 AM (11 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

Fix build warning in OSAllocatorPosix.cpp
https://bugs.webkit.org/show_bug.cgi?id=105761

Reviewed by Kentaro Hara.

  • wtf/OSAllocatorPosix.cpp:

(WTF::OSAllocator::reserveUncommitted): Fix unused param warnings.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r138454 r138474  
     12012-12-26  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Fix build warning in OSAllocatorPosix.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=105761
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * wtf/OSAllocatorPosix.cpp:
     9        (WTF::OSAllocator::reserveUncommitted): Fix unused param warnings.
     10
    1112012-12-24  Yury Semikhatsky  <yurys@chromium.org>
    212
  • trunk/Source/WTF/wtf/OSAllocatorPosix.cpp

    r137994 r138474  
    4343        CRASH();
    4444#elif OS(LINUX)
     45    UNUSED_PARAM(usage);
     46    UNUSED_PARAM(writable);
     47    UNUSED_PARAM(executable);
     48    UNUSED_PARAM(includesGuardPages);
     49
    4550    void* result = mmap(0, bytes, PROT_NONE, MAP_NORESERVE | MAP_PRIVATE | MAP_ANON, -1, 0);
    4651    if (result == MAP_FAILED)
Note: See TracChangeset for help on using the changeset viewer.