Changeset 39908 in webkit for trunk/JavaScriptCore/wtf/Threading.h
- Timestamp:
- Jan 14, 2009, 1:57:30 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/Threading.h
r39487 r39908 168 168 169 169 void wait(Mutex& mutex); 170 // Returns true if the condition was signaled before the timeout, false if the timeout was reached 171 bool timedWait(Mutex&, double interval); 170 // Returns true if the condition was signaled before absoluteTime, false if the absoluteTime was reached or is in the past. 171 // The absoluteTime is in seconds, starting on January 1, 1970. The time is assumed to use the same time zone as WTF::currentTime(). 172 bool timedWait(Mutex&, double absoluteTime); 172 173 void signal(); 173 174 void broadcast();
Note:
See TracChangeset
for help on using the changeset viewer.