Title: [101100] trunk/Source/_javascript_Core
- Revision
- 101100
- Author
- [email protected]
- Date
- 2011-11-23 12:18:15 -0800 (Wed, 23 Nov 2011)
Log 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):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (101099 => 101100)
--- trunk/Source/_javascript_Core/ChangeLog 2011-11-23 19:58:31 UTC (rev 101099)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-11-23 20:18:15 UTC (rev 101100)
@@ -1,3 +1,13 @@
+2011-11-23 George Staikos <[email protected]>
+
+ 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):
+
2011-11-23 Nikolas Zimmermann <[email protected]>
Add flags/precision arguments to String::number(double) to allow fine-grained control over the result string
Modified: trunk/Source/_javascript_Core/wtf/RandomNumberSeed.h (101099 => 101100)
--- trunk/Source/_javascript_Core/wtf/RandomNumberSeed.h 2011-11-23 19:58:31 UTC (rev 101099)
+++ trunk/Source/_javascript_Core/wtf/RandomNumberSeed.h 2011-11-23 20:18:15 UTC (rev 101100)
@@ -56,7 +56,7 @@
srand(GetTickCount());
#elif COMPILER(MSVC) && defined(_CRT_RAND_S)
// On Windows we use rand_s which initialises itself
-#elif OS(UNIX) && !PLATFORM(BLACKBERRY)
+#elif OS(UNIX)
// srandomdev is not guaranteed to exist on linux so we use this poor seed, this should be improved
timeval time;
gettimeofday(&time, 0);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes