Changes between Version 6 and Version 7 of doc/dev/beginners
- Timestamp:
- Apr 7, 2015, 12:09:53 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/dev/beginners
v6 v7 94 94 C++11 provides [http://en.cppreference.com/w/cpp/thread/thread threads] and [http://en.cppreference.com/w/cpp/thread/mutex mutexes]. 95 95 96 * Replace the platform-dependent code in [browser:trunk/src/sys/thread.cpp] and [browser:trunk/src/sys/threadbase.h] with portable C++11 code.96 * '''(DONE)''' Replace the platform-dependent code in [browser:trunk/src/sys/thread.cpp] and [browser:trunk/src/sys/threadbase.h] with portable C++11 code. 97 97 * Once it no longer depends on platform-specific code, remove [browser:trunk/src/sys/threadbase.h] and merge its contents into [browser:trunk/src/lol/sys/thread.h]. 98 98 … … 112 112 113 113 Make sure to write **unit tests** for this code! 114 115 116