Title: [92868] trunk/Source/_javascript_Core
Revision
92868
Author
[email protected]
Date
2011-08-11 10:29:09 -0700 (Thu, 11 Aug 2011)

Log Message

Removed unused variable in StackBounds::initialize() to resolve
compiler warning when building on QNX.
https://bugs.webkit.org/show_bug.cgi?id=66072

Patch by Daniel Bates <[email protected]> on 2011-08-11
Reviewed by Antonio Gomes.

* wtf/StackBounds.cpp:
(WTF::StackBounds::initialize):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (92867 => 92868)


--- trunk/Source/_javascript_Core/ChangeLog	2011-08-11 17:23:49 UTC (rev 92867)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-08-11 17:29:09 UTC (rev 92868)
@@ -1,3 +1,14 @@
+2011-08-11  Daniel Bates  <[email protected]>
+
+        Removed unused variable in StackBounds::initialize() to resolve
+        compiler warning when building on QNX.
+        https://bugs.webkit.org/show_bug.cgi?id=66072
+
+        Reviewed by Antonio Gomes.
+
+        * wtf/StackBounds.cpp:
+        (WTF::StackBounds::initialize):
+
 2011-08-11  Devdatta Deshpande  <[email protected]>
 
         Implementation of monotonically increasing clock on GTK

Modified: trunk/Source/_javascript_Core/wtf/StackBounds.cpp (92867 => 92868)


--- trunk/Source/_javascript_Core/wtf/StackBounds.cpp	2011-08-11 17:23:49 UTC (rev 92867)
+++ trunk/Source/_javascript_Core/wtf/StackBounds.cpp	2011-08-11 17:29:09 UTC (rev 92868)
@@ -92,7 +92,6 @@
 {
     void* stackBase = 0;
     size_t stackSize = 0;
-    pthread_t thread = pthread_self();
 
     struct _debug_thread_info threadInfo;
     memset(&threadInfo, 0, sizeof(threadInfo));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to