Title: [149150] trunk/Source/WTF
Revision
149150
Author
[email protected]
Date
2013-04-25 15:50:07 -0700 (Thu, 25 Apr 2013)

Log Message

Fix 32bit build

Modified Paths


Diff

Modified: trunk/Source/WTF/ChangeLog (149149 => 149150)


--- trunk/Source/WTF/ChangeLog	2013-04-25 22:37:22 UTC (rev 149149)
+++ trunk/Source/WTF/ChangeLog	2013-04-25 22:50:07 UTC (rev 149150)
@@ -1,5 +1,12 @@
 2013-04-25  Oliver Hunt  <[email protected]>
 
+        Fix 32bit build
+
+        * wtf/StackBounds.cpp:
+        (WTF::StackBounds::initialize):
+
+2013-04-25  Oliver Hunt  <[email protected]>
+
         Stack guards are too conservative
         https://bugs.webkit.org/show_bug.cgi?id=115147
 

Modified: trunk/Source/WTF/wtf/StackBounds.cpp (149149 => 149150)


--- trunk/Source/WTF/wtf/StackBounds.cpp	2013-04-25 22:37:22 UTC (rev 149149)
+++ trunk/Source/WTF/wtf/StackBounds.cpp	2013-04-25 22:50:07 UTC (rev 149150)
@@ -79,7 +79,7 @@
 {
     pthread_t thread = pthread_self();
     m_origin = pthread_get_stackaddr_np(thread);
-    size_t size = 0;
+    rlim_t size = 0;
     if (pthread_main_np()) {
         // FIXME: <rdar://problem/13741204>
         // pthread_get_size lies to us when we're the main thread, use get_rlimit instead
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to