⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 101100 in webkit


Ignore:
Timestamp:
Nov 23, 2011, 12:18:15 PM (15 years ago)
Author:
staikos@webkit.org
Message:

Remove BlackBerry OS support from RandomNumberSeed, making QNX=UNIX.
https://bugs.webkit.org/show_bug.cgi?id=73028

Reviewed by Daniel Bates.

  • wtf/RandomNumberSeed.h:

(WTF::initializeRandomNumberGenerator):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r101056 r101100  
     12011-11-23  George Staikos  <staikos@webkit.org>
     2
     3        Remove BlackBerry OS support from RandomNumberSeed, making QNX=UNIX.
     4        https://bugs.webkit.org/show_bug.cgi?id=73028
     5
     6        Reviewed by Daniel Bates.
     7
     8        * wtf/RandomNumberSeed.h:
     9        (WTF::initializeRandomNumberGenerator):
     10
    1112011-11-23  Nikolas Zimmermann  <nzimmermann@rim.com>
    212
  • trunk/Source/JavaScriptCore/wtf/RandomNumberSeed.h

    r101041 r101100  
    5757#elif COMPILER(MSVC) && defined(_CRT_RAND_S)
    5858    // On Windows we use rand_s which initialises itself
    59 #elif OS(UNIX) && !PLATFORM(BLACKBERRY)
     59#elif OS(UNIX)
    6060    // srandomdev is not guaranteed to exist on linux so we use this poor seed, this should be improved
    6161    timeval time;
Note: See TracChangeset for help on using the changeset viewer.