summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/ChangeLog
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-06-20 13:02:56 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2012-07-30 11:39:12 +0200
commitd69ee7b10d4b703e54272f2d3a79383d1af4ec64 (patch)
tree9f5b03cc47e621f6d7f23587b1f60247911919c3 /Source/JavaScriptCore/ChangeLog
parent89e2486a48b739f8d771d69ede5a6a1b244a10fc (diff)
downloadqtwebkit-d69ee7b10d4b703e54272f2d3a79383d1af4ec64.tar.gz
[WIN] Remove dependency on pthread from MachineStackMarker
https://bugs.webkit.org/show_bug.cgi?id=68429 Patch by Patrick Gansterer <paroga@webkit.org> on 2012-06-13 Reviewed by NOBODY (OOPS!). Implement pthread TLS functionality with native windows functions. * heap/MachineStackMarker.cpp: Use the new functions instead of pthread directly. * heap/MachineStackMarker.h: * wtf/ThreadSpecific.h: (WTF::ThreadSpecificKeyCreate): Added wrapper around pthread_key_create. (WTF::ThreadSpecificKeyDelete): Added wrapper around pthread_key_delete. (WTF::ThreadSpecificSet): Added wrapper around pthread_setspecific. (WTF::ThreadSpecificGet): Added wrapper around pthread_getspecific. * wtf/ThreadSpecificWin.cpp:
Diffstat (limited to 'Source/JavaScriptCore/ChangeLog')
-rw-r--r--Source/JavaScriptCore/ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog
index dc002d41c..c71b441e2 100644
--- a/Source/JavaScriptCore/ChangeLog
+++ b/Source/JavaScriptCore/ChangeLog
@@ -1,3 +1,21 @@
+2012-06-13 Patrick Gansterer <paroga@webkit.org>
+
+ [WIN] Remove dependency on pthread from MachineStackMarker
+ https://bugs.webkit.org/show_bug.cgi?id=68429
+
+ Reviewed by NOBODY (OOPS!).
+
+ Implement pthread TLS functionality with native windows functions.
+
+ * heap/MachineStackMarker.cpp: Use the new functions instead of pthread directly.
+ * heap/MachineStackMarker.h:
+ * wtf/ThreadSpecific.h:
+ (WTF::ThreadSpecificKeyCreate): Added wrapper around pthread_key_create.
+ (WTF::ThreadSpecificKeyDelete): Added wrapper around pthread_key_delete.
+ (WTF::ThreadSpecificSet): Added wrapper around pthread_setspecific.
+ (WTF::ThreadSpecificGet): Added wrapper around pthread_getspecific.
+ * wtf/ThreadSpecificWin.cpp:
+
2012-07-29 Filip Pizlo <fpizlo@apple.com>
PropertyNameArray::m_shouldCache is only assigned and never used