Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/Thread.h

Issue 10026001: Cross-platform thread primitives (Closed)
Patch Set: Renamed thread to nativeThread, made the tests more robust Created April 3, 2013, 4:23 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/Thread.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/Thread.h
===================================================================
--- a/src/Thread.h
+++ b/src/Thread.h
@@ -50,9 +50,9 @@
private:
#ifdef WIN32
- HANDLE thread;
+ HANDLE nativeThread;
#else
- pthread_t thread;
+ pthread_t nativeThread;
#endif
};
}
« no previous file with comments | « no previous file | src/Thread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld