summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/wtf/ThreadingPrimitives.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-02-03 09:55:33 +0100
committerSimon Hausmann <simon.hausmann@nokia.com>2012-02-03 09:55:33 +0100
commitcd44dc59cdfc39534aef4d417e9f3c412e3be139 (patch)
tree8d89889ba95ed6ec9322e733846cc9cce9d7dff1 /Source/JavaScriptCore/wtf/ThreadingPrimitives.h
parentd11f84f5b5cdc0d92a08af01b13472fdd5f9acb9 (diff)
downloadqtwebkit-cd44dc59cdfc39534aef4d417e9f3c412e3be139.tar.gz
Imported WebKit commit fce473cb4d55aa9fe9d0b0322a2fffecb731b961 (http://svn.webkit.org/repository/webkit/trunk@106560)
Diffstat (limited to 'Source/JavaScriptCore/wtf/ThreadingPrimitives.h')
-rw-r--r--Source/JavaScriptCore/wtf/ThreadingPrimitives.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/Source/JavaScriptCore/wtf/ThreadingPrimitives.h b/Source/JavaScriptCore/wtf/ThreadingPrimitives.h
index 1bed5d3ae..2ac42c8f1 100644
--- a/Source/JavaScriptCore/wtf/ThreadingPrimitives.h
+++ b/Source/JavaScriptCore/wtf/ThreadingPrimitives.h
@@ -82,12 +82,12 @@ typedef void* PlatformCondition;
class Mutex {
WTF_MAKE_NONCOPYABLE(Mutex); WTF_MAKE_FAST_ALLOCATED;
public:
- Mutex();
- ~Mutex();
+ WTF_EXPORT_PRIVATE Mutex();
+ WTF_EXPORT_PRIVATE ~Mutex();
- void lock();
- bool tryLock();
- void unlock();
+ WTF_EXPORT_PRIVATE void lock();
+ WTF_EXPORT_PRIVATE bool tryLock();
+ WTF_EXPORT_PRIVATE void unlock();
public:
PlatformMutex& impl() { return m_mutex; }
@@ -118,15 +118,15 @@ private:
class ThreadCondition {
WTF_MAKE_NONCOPYABLE(ThreadCondition);
public:
- ThreadCondition();
- ~ThreadCondition();
+ WTF_EXPORT_PRIVATE ThreadCondition();
+ WTF_EXPORT_PRIVATE ~ThreadCondition();
- void wait(Mutex& mutex);
+ WTF_EXPORT_PRIVATE void wait(Mutex& mutex);
// Returns true if the condition was signaled before absoluteTime, false if the absoluteTime was reached or is in the past.
// The absoluteTime is in seconds, starting on January 1, 1970. The time is assumed to use the same time zone as WTF::currentTime().
- bool timedWait(Mutex&, double absoluteTime);
- void signal();
- void broadcast();
+ WTF_EXPORT_PRIVATE bool timedWait(Mutex&, double absoluteTime);
+ WTF_EXPORT_PRIVATE void signal();
+ WTF_EXPORT_PRIVATE void broadcast();
private:
PlatformCondition m_condition;