diff options
Diffstat (limited to 'src/doxy/threading.dox')
-rw-r--r-- | src/doxy/threading.dox | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/doxy/threading.dox b/src/doxy/threading.dox new file mode 100644 index 0000000..0ae5325 --- /dev/null +++ b/src/doxy/threading.dox | |||
@@ -0,0 +1,15 @@ | |||
1 | /** | ||
2 | *@page howto_threading Making Applications Multi-threaded | ||
3 | * | ||
4 | * Libbu++ provides support for object oriented threading including full support | ||
5 | * for inter-thread communication and safety devices such as mutexes, | ||
6 | * conditions, and semaphores. It even provides some of the basic foundation | ||
7 | * classes in thread-safe versions that often add extra functionality and make | ||
8 | * writing thread-safe programs as easy as could be. | ||
9 | * | ||
10 | * Threads in libbu++ are currently based on the posix model, but will hopefully | ||
11 | * adopt other methods behind the scenes for compatability with other operating | ||
12 | * systems. | ||
13 | * | ||
14 | *@todo Finish this page. | ||
15 | */ | ||