diff options
Diffstat (limited to 'doc/html/signals2/faq.html')
-rw-r--r-- | doc/html/signals2/faq.html | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/doc/html/signals2/faq.html b/doc/html/signals2/faq.html index 217ada817b..d7f8016710 100644 --- a/doc/html/signals2/faq.html +++ b/doc/html/signals2/faq.html @@ -4,9 +4,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Frequently Asked Questions</title> <link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> -<link rel="up" href="../signals2.html" title="Chapter 28. Boost.Signals2"> +<link rel="up" href="../signals2.html" title="Chapter 30. Boost.Signals2"> <link rel="prev" href="thread-safety.html" title="Thread-Safety"> <link rel="next" href="rationale.html" title="Design Rationale"> </head> @@ -27,22 +27,20 @@ <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="signals2.faq"></a>Frequently Asked Questions</h2></div></div></div> <div class="qandaset"> -<a name="idm45555129290320"></a><dl> -<dt>1. <a href="faq.html#idm45555129290064">Don't noncopyable signal semantics mean that a class +<a name="idp397945328"></a><dl> +<dt>1. <a href="faq.html#idp397945584">Don't noncopyable signal semantics mean that a class with a signal member will be noncopyable as well?</a> </dt> -<dt>2. <a href="faq.html#idm45555129287424">Is Boost.Signals2 thread-safe?</a> +<dt>2. <a href="faq.html#idp397947936">Is Boost.Signals2 thread-safe?</a> </dt> </dl> -<table border="0" style="width: 100%;"> -<colgroup> +<table border="0" width="100%" summary="Q and A Set"> <col align="left" width="1%"> <col> -</colgroup> <tbody> <tr class="question"> <td align="left" valign="top"> -<a name="idm45555129290064"></a><a name="idm45555129289808"></a><p><b>1.</b></p> +<a name="idp397945584"></a><a name="idp397945840"></a><p><b>1.</b></p> </td> <td align="left" valign="top"><p>Don't noncopyable signal semantics mean that a class with a signal member will be noncopyable as well?</p></td> @@ -57,7 +55,7 @@ </tr> <tr class="question"> <td align="left" valign="top"> -<a name="idm45555129287424"></a><a name="idm45555129287168"></a><p><b>2.</b></p> +<a name="idp397947936"></a><a name="idp397948192"></a><p><b>2.</b></p> </td> <td align="left" valign="top"><p>Is Boost.Signals2 thread-safe?</p></td> </tr> @@ -71,7 +69,7 @@ with signal invocation, you will need to use automatic connection management. That is, the objects will need to be owned by <code class="computeroutput">shared_ptr</code> and passed to the slot's - <code class="computeroutput"><a class="link" href="../boost/signals2/slot.html#idm45506990261536-bb">track</a></code>() method before the slot is connected. + <code class="computeroutput"><a class="link" href="../boost/signals2/slot.html#idp131977696-bb">track</a></code>() method before the slot is connected. The <code class="computeroutput"><a class="link" href="../boost/signals2/trackable.html" title="Class trackable">signals2::trackable</a></code> scheme of automatic connection management is NOT thread-safe, and is only provided to ease porting of single-threaded code from Boost.Signals to Boost.Signals2. |