diff options
Diffstat (limited to 'libstdc++-v3/include/std/thread')
-rw-r--r-- | libstdc++-v3/include/std/thread | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/libstdc++-v3/include/std/thread b/libstdc++-v3/include/std/thread index 8f00489..f2e5fc3 100644 --- a/libstdc++-v3/include/std/thread +++ b/libstdc++-v3/include/std/thread @@ -53,6 +53,14 @@ namespace std { + /** + * @defgroup threads Threads + * @ingroup concurrency + * + * Classes for thread support. + * @{ + */ + /// thread class thread { @@ -225,7 +233,10 @@ namespace std return __out << __id._M_thread; } - // 30.2.2 Namespace this_thread. + /** @namespace std::this_thread + * @brief ISO C++ 0x entities sub namespace for thread. + * 30.2.2 Namespace this_thread. + */ namespace this_thread { /// get_id @@ -267,6 +278,8 @@ namespace std } #endif } + + // @} group threads } #endif // _GLIBCXX_HAS_GTHREADS && _GLIBCXX_USE_C99_STDINT_TR1 |