Changeset 53815 in webkit for trunk/JavaScriptCore/wtf/ThreadingPthreads.cpp
- Timestamp:
- Jan 25, 2010, 3:12:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/ThreadingPthreads.cpp
r53717 r53815 208 208 209 209 pthread_t pthreadHandle = pthreadHandleForIdentifier(threadID); 210 if (!pthreadHandle) 211 return 0; 210 212 211 213 int joinResult = pthread_join(pthreadHandle, result); … … 221 223 222 224 pthread_t pthreadHandle = pthreadHandleForIdentifier(threadID); 225 if (!pthreadHandle) 226 return; 223 227 224 228 pthread_detach(pthreadHandle);
Note:
See TracChangeset
for help on using the changeset viewer.