README.txt
上传用户:sunlush021
上传日期:2022-06-22
资源大小:90k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. TinyThread++ v0.6
  2. =================
  3. About
  4. -----
  5. TinyThread++ is a minimalist, portable, threading library for C++, intended to
  6. make it easy to create multi threaded C++ applications.
  7. The library is closesly modeled after the current C++0x standard (draft), but
  8. only a subset is implemented at the moment.
  9. See the documentation in the doc/html directory for more information.
  10. Using TinyThread++
  11. ------------------
  12. To use TinyThread++ in your own project, just add tinythread.cpp and
  13. tinythread.h to your project. In your own code, do:
  14. #include <tinythread.h>
  15. using namespace tthread;
  16. If you wish to use the fast_mutex class, inlude fast_mutex.h:
  17. #include <fast_mutex.h>
  18. History
  19. -------
  20. v0.6 - 2010.04.28
  21.   - Added a fast_mutex class (in fast_mutex.h).
  22.   - Made the test.cpp application compile under Mac OS X and MinGW/g++ 3.x.
  23. v0.5 - 2010.03.31
  24.   - Added the thread_local keyword (support for thread-local storage).
  25.   - Added a test application to test the API (test.cpp).
  26.   - Improved the Doxygen documentation.
  27. v0.4 - 2010.03.27
  28.   - Added thread::get_id() and this_thread::get_id().
  29.   - Changed the namespace name from tinythread to tthread.
  30. v0.3 - 2010.03.24
  31.   - Fixed a compiler error for fractal.cpp under MS Visual C++.
  32.   - Added colors to the fractal generator.
  33. v0.2 - 2010.03.23
  34.   - Better C++0x conformance.
  35.   - Better documentation.
  36.   - New classes:
  37.     - lock_guard
  38.   - New member functions:
  39.     - thread::joinable()
  40.     - thread::native_handle()
  41.     - mutex::try_lock()
  42.   - Added a multi threaded fractal generator test application.
  43. v0.1 - 2010.03.21
  44.   - Initial release.
  45. License
  46. -------
  47. Copyright (c) 2010 Marcus Geelnard
  48. This software is provided 'as-is', without any express or implied
  49. warranty. In no event will the authors be held liable for any damages
  50. arising from the use of this software.
  51. Permission is granted to anyone to use this software for any purpose,
  52. including commercial applications, and to alter it and redistribute it
  53. freely, subject to the following restrictions:
  54.     1. The origin of this software must not be misrepresented; you must not
  55.     claim that you wrote the original software. If you use this software
  56.     in a product, an acknowledgment in the product documentation would be
  57.     appreciated but is not required.
  58.     2. Altered source versions must be plainly marked as such, and must not be
  59.     misrepresented as being the original software.
  60.     3. This notice may not be removed or altered from any source
  61.     distribution.