Title: [217291] trunk/Source/WTF
Revision
217291
Author
commit-qu...@webkit.org
Date
2017-05-23 12:51:44 -0700 (Tue, 23 May 2017)

Log Message

[WTF] Export additional symbols in threading
https://bugs.webkit.org/show_bug.cgi?id=171952

Patch by Don Olmstead <don.olmst...@am.sony.com> on 2017-05-23
Reviewed by Konstantin Tokarev.

* wtf/ThreadMessage.h:
* wtf/threads/Signals.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (217290 => 217291)


--- trunk/Source/WTF/ChangeLog	2017-05-23 19:46:39 UTC (rev 217290)
+++ trunk/Source/WTF/ChangeLog	2017-05-23 19:51:44 UTC (rev 217291)
@@ -1,3 +1,13 @@
+2017-05-23  Don Olmstead  <don.olmst...@am.sony.com>
+
+        [WTF] Export additional symbols in threading
+        https://bugs.webkit.org/show_bug.cgi?id=171952
+
+        Reviewed by Konstantin Tokarev.
+
+        * wtf/ThreadMessage.h:
+        * wtf/threads/Signals.h:
+
 2017-05-23  Tomas Popela  <tpop...@redhat.com>
 
         [WTF] Compilation fails with system malloc

Modified: trunk/Source/WTF/wtf/ThreadMessage.h (217290 => 217291)


--- trunk/Source/WTF/wtf/ThreadMessage.h	2017-05-23 19:46:39 UTC (rev 217290)
+++ trunk/Source/WTF/wtf/ThreadMessage.h	2017-05-23 19:51:44 UTC (rev 217291)
@@ -46,7 +46,7 @@
 // This method allows us to send a message which will be run in a signal handler on the desired thread.
 // There are several caveates to this method however, This function uses signals so your message should
 // be sync signal safe.
-MessageStatus sendMessageScoped(Thread&, const ThreadMessage&);
+WTF_EXPORT_PRIVATE MessageStatus sendMessageScoped(Thread&, const ThreadMessage&);
 
 template<typename Functor>
 MessageStatus sendMessage(Thread& targetThread, const Functor& func)

Modified: trunk/Source/WTF/wtf/threads/Signals.h (217290 => 217291)


--- trunk/Source/WTF/wtf/threads/Signals.h	2017-05-23 19:46:39 UTC (rev 217290)
+++ trunk/Source/WTF/wtf/threads/Signals.h	2017-05-23 19:51:44 UTC (rev 217291)
@@ -85,7 +85,7 @@
 // Note: Your signal handler will be called every time the handler for the desired signal is called.
 // Thus it is your responsibility to discern if the signal fired was yours.
 // This function is currently a one way street i.e. once installed, a signal handler cannot be uninstalled.
-void installSignalHandler(Signal, SignalHandler&&);
+WTF_EXPORT_PRIVATE void installSignalHandler(Signal, SignalHandler&&);
 
 } // namespace WTF
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to