blob: ee4da4520372017638d9254b979179d059b0b604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Copyright (C) 2007-2008 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
/**
*@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.
*/
|