Title: [230201] trunk/Source/WTF
Revision
230201
Author
tpop...@redhat.com
Date
2018-04-03 05:51:35 -0700 (Tue, 03 Apr 2018)

Log Message

Unreviewed, mute the unused parameter compilation warning

Triggered on the PPC64 machine.

* wtf/ThreadingPthreads.cpp:
(WTF::Thread::signalHandlerSuspendResume):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (230200 => 230201)


--- trunk/Source/WTF/ChangeLog	2018-04-03 12:42:09 UTC (rev 230200)
+++ trunk/Source/WTF/ChangeLog	2018-04-03 12:51:35 UTC (rev 230201)
@@ -1,5 +1,14 @@
 2018-04-03  Tomas Popela  <tpop...@redhat.com>
 
+        Unreviewed, mute the unused parameter compilation warning
+
+        Triggered on the PPC64 machine.
+
+        * wtf/ThreadingPthreads.cpp:
+        (WTF::Thread::signalHandlerSuspendResume):
+
+2018-04-03  Tomas Popela  <tpop...@redhat.com>
+
         Unreviewed, fix the unused variable compilation warning
 
         Move the ucontext_t code under the HAVE(MACHINE_CONTEXT). Triggered

Modified: trunk/Source/WTF/wtf/ThreadingPthreads.cpp (230200 => 230201)


--- trunk/Source/WTF/wtf/ThreadingPthreads.cpp	2018-04-03 12:42:09 UTC (rev 230200)
+++ trunk/Source/WTF/wtf/ThreadingPthreads.cpp	2018-04-03 12:51:35 UTC (rev 230201)
@@ -162,6 +162,7 @@
     ucontext_t* userContext = static_cast<ucontext_t*>(ucontext);
     thread->m_platformRegisters = &registersFromUContext(userContext);
 #else
+    UNUSED_PARAM(ucontext);
     PlatformRegisters platformRegisters { getApproximateStackPointer() };
     thread->m_platformRegisters = &platformRegisters;
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to