Title: [110617] trunk/Source/_javascript_Core
- Revision
- 110617
- Author
- [email protected]
- Date
- 2012-03-13 14:52:27 -0700 (Tue, 13 Mar 2012)
Log Message
The callback is only used if SA_RESTART is defined. Compile it out
otherwise to avoid a warning.
https://bugs.webkit.org/show_bug.cgi?id=80926
Reviewed by Alexey Proskuryakov.
* heap/MachineStackMarker.cpp:
(JSC):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (110616 => 110617)
--- trunk/Source/_javascript_Core/ChangeLog 2012-03-13 21:51:59 UTC (rev 110616)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-03-13 21:52:27 UTC (rev 110617)
@@ -1,3 +1,14 @@
+2012-03-13 George Staikos <[email protected]>
+
+ The callback is only used if SA_RESTART is defined. Compile it out
+ otherwise to avoid a warning.
+ https://bugs.webkit.org/show_bug.cgi?id=80926
+
+ Reviewed by Alexey Proskuryakov.
+
+ * heap/MachineStackMarker.cpp:
+ (JSC):
+
2012-03-13 Hojong Han <[email protected]>
Dump the generated code for ARM_TRADITIONAL
Modified: trunk/Source/_javascript_Core/heap/MachineStackMarker.cpp (110616 => 110617)
--- trunk/Source/_javascript_Core/heap/MachineStackMarker.cpp 2012-03-13 21:51:59 UTC (rev 110616)
+++ trunk/Source/_javascript_Core/heap/MachineStackMarker.cpp 2012-03-13 21:52:27 UTC (rev 110617)
@@ -96,6 +96,7 @@
typedef pthread_t PlatformThread;
static const int SigThreadSuspendResume = SIGUSR2;
+#if defined(SA_RESTART)
static void pthreadSignalHandlerSuspendResume(int signo)
{
sigset_t signalSet;
@@ -104,6 +105,7 @@
sigsuspend(&signalSet);
}
#endif
+#endif
class MachineThreads::Thread {
public:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes