Title: [166185] trunk/Source/WTF
- Revision
- 166185
- Author
- [email protected]
- Date
- 2014-03-24 12:31:08 -0700 (Mon, 24 Mar 2014)
Log Message
Add support for thread QoS
https://bugs.webkit.org/show_bug.cgi?id=130688
Speculative EFL build fix.
* wtf/ThreadingPthreads.cpp:
(WTF::setCurrentThreadQOSUtility):
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (166184 => 166185)
--- trunk/Source/WTF/ChangeLog 2014-03-24 19:25:32 UTC (rev 166184)
+++ trunk/Source/WTF/ChangeLog 2014-03-24 19:31:08 UTC (rev 166185)
@@ -3,6 +3,16 @@
Add support for thread QoS
https://bugs.webkit.org/show_bug.cgi?id=130688
+ Speculative EFL build fix.
+
+ * wtf/ThreadingPthreads.cpp:
+ (WTF::setCurrentThreadQOSUtility):
+
+2014-03-24 Gavin Barraclough <[email protected]>
+
+ Add support for thread QoS
+ https://bugs.webkit.org/show_bug.cgi?id=130688
+
Reviewed by Andreas Kling.
* wtf/FastMalloc.cpp:
Modified: trunk/Source/WTF/wtf/ThreadingPthreads.cpp (166184 => 166185)
--- trunk/Source/WTF/wtf/ThreadingPthreads.cpp 2014-03-24 19:25:32 UTC (rev 166184)
+++ trunk/Source/WTF/wtf/ThreadingPthreads.cpp 2014-03-24 19:31:08 UTC (rev 166185)
@@ -236,7 +236,7 @@
void setCurrentThreadQOSUtility()
{
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
+#if (TARGET_OS_MAC && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000)
pthread_set_qos_class_np(pthread_self(), QOS_CLASS_UTILITY, 0);
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes