thread_safety.qbk

来自「Boost provides free peer-reviewed portab」· QBK 代码 · 共 31 行

QBK
31
字号
[section:threads Thread Safety]The library is fully thread safe and re-entrant provided the functionand class templates in the library are instantiated withbuilt-in floating point types: i.e. the types `float`, `double` and `long double`.  However, the library [*is not thread safe] whenused with user-defined (i.e. class type) numeric types.The reason for the latter limitation is the need toinitialise symbolic constants using constructs such as:   static const T coefficient_array = { ... list of values ... };Which is always thread safe when T is a built-in floating point type, but not when T is a user defined type: as in this case there is a need for T's constructors to be run, leading to potentialrace conditions.This limitation may be addressed in a future release.[endsect] [/section:threads Thread Safety][/   Copyright 2006 John Maddock and Paul A. Bristow.  Distributed under the Boost Software License, Version 1.0.  (See accompanying file LICENSE_1_0.txt or copy at  http://www.boost.org/LICENSE_1_0.txt).]

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?