Changeset 58482 in webkit


Ignore:
Timestamp:
Apr 29, 2010 12:52:37 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-29 Kwang Yul Seo <skyul@company100.net>

Reviewed by Simon Hausmann.

[WINCE] Export g_stackBase with JS_EXPORTDATA
https://bugs.webkit.org/show_bug.cgi?id=37437

Export g_stackBase with JS_EXPORTDATA as it is used by SharedTimerWince.cpp.

  • runtime/Collector.cpp:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r58475 r58482  
     12010-04-29  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [WINCE] Export g_stackBase with JS_EXPORTDATA
     6        https://bugs.webkit.org/show_bug.cgi?id=37437
     7
     8        Export g_stackBase with JS_EXPORTDATA as it is used by SharedTimerWince.cpp.
     9
     10        * runtime/Collector.cpp:
     11
    1122010-04-28  Oliver Hunt  <oliver@apple.com>
    213
  • trunk/JavaScriptCore/runtime/Collector.cpp

    r58393 r58482  
    450450
    451451#if OS(WINCE)
    452 void* g_stackBase = 0;
     452JS_EXPORTDATA void* g_stackBase = 0;
    453453
    454454inline bool isPageWritable(void* page)
Note: See TracChangeset for help on using the changeset viewer.