blob: 0ae53254c923564b9b54598a4f57b85affbb13ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
*@page howto_threading Making Applications Multi-threaded
*
* Libbu++ provides support for object oriented threading including full support
* for inter-thread communication and safety devices such as mutexes,
* conditions, and semaphores. It even provides some of the basic foundation
* classes in thread-safe versions that often add extra functionality and make
* writing thread-safe programs as easy as could be.
*
* Threads in libbu++ are currently based on the posix model, but will hopefully
* adopt other methods behind the scenes for compatability with other operating
* systems.
*
*@todo Finish this page.
*/
|