Ignore:
Timestamp:
Jun 17, 2009, 9:39:56 AM (16 years ago)
Author:
[email protected]
Message:

2009-06-17 George Staikos <[email protected]>

Reviewed by Adam Treat.

https://bugs.webkit.org/show_bug.cgi?id=23155
Move WIN_CE -> WINCE as previously discussed with Qt WINCE folks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/Threading.h

    r44651 r44765  
    6060#define Threading_h
    6161
    62 #if PLATFORM(WIN_CE)
     62#if PLATFORM(WINCE)
    6363#include <windows.h>
    6464#endif
     
    6868#include <wtf/Noncopyable.h>
    6969
    70 #if PLATFORM(WIN_OS) && !PLATFORM(WIN_CE)
     70#if PLATFORM(WIN_OS) && !PLATFORM(WINCE)
    7171#include <windows.h>
    7272#elif PLATFORM(DARWIN)
     
    213213#define WTF_USE_LOCKFREE_THREADSAFESHARED 1
    214214
    215 #if COMPILER(MINGW) || COMPILER(MSVC7) || PLATFORM(WIN_CE)
     215#if COMPILER(MINGW) || COMPILER(MSVC7) || PLATFORM(WINCE)
    216216inline void atomicIncrement(int* addend) { InterlockedIncrement(reinterpret_cast<long*>(addend)); }
    217217inline int atomicDecrement(int* addend) { return InterlockedDecrement(reinterpret_cast<long*>(addend)); }
Note: See TracChangeset for help on using the changeset viewer.