Release 1.39.0
[boost.git] / Boost_1_39_0 / libs / math / doc / sf_and_dist / html / math_toolkit / main_overview / threads.html
blob91db6660d0a45280aa448c94034d397f7742d9fb
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
4 <title>Thread Safety</title>
5 <link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
6 <meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
7 <link rel="home" href="../../index.html" title="Math Toolkit">
8 <link rel="up" href="../main_overview.html" title="Overview">
9 <link rel="prev" href="pol_overview.html" title="Configuration and Policies">
10 <link rel="next" href="perf_over.html" title="Performance">
11 </head>
12 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13 <table cellpadding="2" width="100%"><tr>
14 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
15 <td align="center"><a href="../../../../../../../index.html">Home</a></td>
16 <td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td>
17 <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
18 <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
19 <td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
20 </tr></table>
21 <hr>
22 <div class="spirit-nav">
23 <a accesskey="p" href="pol_overview.html"><img src="../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../main_overview.html"><img src="../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="perf_over.html"><img src="../../../../../../../doc/html/images/next.png" alt="Next"></a>
24 </div>
25 <div class="section" lang="en">
26 <div class="titlepage"><div><div><h3 class="title">
27 <a name="math_toolkit.main_overview.threads"></a><a class="link" href="threads.html" title="Thread Safety"> Thread Safety</a>
28 </h3></div></div></div>
29 <p>
30 The library is fully thread safe and re-entrant provided the function and
31 class templates in the library are instantiated with built-in floating point
32 types: i.e. the types <code class="computeroutput"><span class="keyword">float</span></code>,
33 <code class="computeroutput"><span class="keyword">double</span></code> and <code class="computeroutput"><span class="keyword">long</span>
34 <span class="keyword">double</span></code>.
35 </p>
36 <p>
37 However, the library <span class="bold"><strong>is not thread safe</strong></span>
38 when used with user-defined (i.e. class type) numeric types.
39 </p>
40 <p>
41 The reason for the latter limitation is the need to initialise symbolic constants
42 using constructs such as:
43 </p>
44 <pre class="programlisting"><span class="keyword">static</span> <span class="keyword">const</span> <span class="identifier">T</span> <span class="identifier">coefficient_array</span> <span class="special">=</span> <span class="special">{</span> <span class="special">...</span> <span class="identifier">list</span> <span class="identifier">of</span> <span class="identifier">values</span> <span class="special">...</span> <span class="special">};</span>
45 </pre>
46 <p>
47 Which is always thread safe when T is a built-in floating point type, but
48 not when T is a user defined type: as in this case there is a need for T's
49 constructors to be run, leading to potential race conditions.
50 </p>
51 <p>
52 This limitation may be addressed in a future release.
53 </p>
54 </div>
55 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
56 <td align="left"></td>
57 <td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
58 Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
59 Distributed under the Boost Software License, Version 1.0. (See accompanying
60 file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
61 </p>
62 </div></td>
63 </tr></table>
64 <hr>
65 <div class="spirit-nav">
66 <a accesskey="p" href="pol_overview.html"><img src="../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../main_overview.html"><img src="../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="perf_over.html"><img src="../../../../../../../doc/html/images/next.png" alt="Next"></a>
67 </div>
68 </body>
69 </html>