Changeset 34111 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
May 24, 2008, 6:58:00 PM (17 years ago)
Author:
[email protected]
Message:

2008-05-24 Alp Toker <[email protected]>

Win32/gcc build fix. Remove MSVC assumption.

  • wtf/TCSpinLock.h: (TCMalloc_SlowLock):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r34106 r34111  
     12008-05-24  Alp Toker  <[email protected]>
     2
     3        Win32/gcc build fix. Remove MSVC assumption.
     4
     5        * wtf/TCSpinLock.h:
     6        (TCMalloc_SlowLock):
     7
    182008-05-24  Oleg Finkelshteyn <[email protected]>
    29
  • trunk/JavaScriptCore/wtf/TCSpinLock.h

    r31216 r34111  
    4949#include <stdlib.h>     /* for abort() */
    5050
    51 #if COMPILER(MSVC)
     51#if PLATFORM(WIN_OS)
    5252#ifndef WIN32_LEAN_AND_MEAN
    5353#define WIN32_LEAN_AND_MEAN
     
    180180
    181181    // Sleep for a few milliseconds
    182 #if COMPILER(MSVC)
     182#if PLATFORM(WIN_OS)
    183183    Sleep(2);
    184184#else
Note: See TracChangeset for help on using the changeset viewer.