Changeset 15054
- Timestamp:
- Oct 31, 2011, 7:00:25 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/source/doc/ccl-documentation.html (modified) (738 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/doc/ccl-documentation.html
r15048 r15054 6 6 <title>Clozure CL Documentation</title> 7 7 <meta name="generator" content="DocBook XSL Stylesheets V1.75.2" /> 8 <link rel="home" href="#id5 85752" title="Clozure CL Documentation" />8 <link rel="home" href="#id559878" title="Clozure CL Documentation" /> 9 9 <link rel="next" href="#about-ccl" title="Chapter 1. About Clozure CL" /> 10 10 </head> … … 14 14 <div> 15 15 <div> 16 <h1 class="title"><a id="id5 85752"></a>Clozure CL Documentation</h1>16 <h1 class="title"><a id="id559878"></a>Clozure CL Documentation</h1> 17 17 </div> 18 18 </div> … … 1478 1478 <pre xmlns="http://www.w3.org/1999/xhtml" class="programlisting"> 1479 1479 joe> cd <em class="replaceable"><code>/path/to/installed/ccl</code></em> 1480 joe:ccl> ./<em class="replaceable"><code>kernel-filename</code></em> 1480 joe:ccl> ./<em class="replaceable"><code>kernel-filename</code></em> --no-init 1481 1481 Welcome to Clozure Common Lisp Version [...] 1482 1482 ? (rebuild-ccl :full t) … … 1491 1491 <p xmlns="http://www.w3.org/1999/xhtml">Replace <em class="replaceable"><code>kernel-filename</code></em> with the filename of the Lisp kernel program. 1492 1492 To find the filename of a Lisp kernel image for your particular platform, see <a class="xref" href="#filename_conventions" title="3.1.1. Platform-specific filename conventions">Section 3.1.1, âPlatform-specific filename conventionsâ</a>. 1493 </p> 1494 <p xmlns="http://www.w3.org/1999/xhtml">Specifying the <code class="literal">--no-init</code> option ensures that personal initializations do not interfere 1495 with rebuilding Clozure CL. 1493 1496 </p> 1494 1497 <p xmlns="http://www.w3.org/1999/xhtml">The rest of this section covers the following topics in brief: … … 1611 1614 </p> 1612 1615 <pre xmlns="http://www.w3.org/1999/xhtml" class="programlisting"> 1613 joe:ccl> ./dx86cl64 1616 joe:ccl> ./dx86cl64 --no-init 1614 1617 Welcome to Clozure Common Lisp Version 1.7 (DarwinX8664)! 1615 1618 ? (rebuild-ccl :full t) … … 1639 1642 joe:ccl> svn update 1640 1643 <... lots of Subversion output...> 1641 joe:ccl> ./dx86cl64 1644 joe:ccl> ./dx86cl64 --no-init 1642 1645 Welcome to Clozure Common Lisp Version 1.7 (DarwinX8664)! 1643 1646 ? (rebuild-ccl :full t) … … 2210 2213 <p xmlns="http://www.w3.org/1999/xhtml">The following terms are used in subsequent sections; it 2211 2214 may be helpful to refer to these definitions.</p> 2212 <p xmlns="http://www.w3.org/1999/xhtml"><a id="id5 98877" class="indexterm"></a><a class="glossterm" href="#fasl-file"><em class="glossterm">fasl2215 <p xmlns="http://www.w3.org/1999/xhtml"><a id="id579253" class="indexterm"></a><a class="glossterm" href="#fasl-file"><em class="glossterm">fasl 2213 2216 files</em></a> are the object files produced 2214 2217 by <code class="literal">compile-file</code>. fasl files store the … … 2221 2224 see 2222 2225 <a class="xref" href="#Platform-specific-filename-conventions" title="Table 3.1. Platform-specific filename conventions">Table 3.1, âPlatform-specific filename conventionsâ</a> </p> 2223 <p xmlns="http://www.w3.org/1999/xhtml">The <a id="id 627695" class="indexterm"></a> <a class="glossterm" href="#lisp_kernel"><em class="glossterm">Lisp2226 <p xmlns="http://www.w3.org/1999/xhtml">The <a id="id590115" class="indexterm"></a> <a class="glossterm" href="#lisp_kernel"><em class="glossterm">Lisp 2224 2227 kernel</em></a> is a C program with a fair amount of 2225 2228 platform-specific assembly language code. Its basic job is to … … 2231 2234 files on different platforms; see 2232 2235 <a class="xref" href="#Platform-specific-filename-conventions" title="Table 3.1. Platform-specific filename conventions">Table 3.1, âPlatform-specific filename conventionsâ</a>.</p> 2233 <p xmlns="http://www.w3.org/1999/xhtml">A <a id="id 630449" class="indexterm"></a> <a class="glossterm" href="#lisp_image"><em class="glossterm">heap2236 <p xmlns="http://www.w3.org/1999/xhtml">A <a id="id592908" class="indexterm"></a> <a class="glossterm" href="#lisp_image"><em class="glossterm">heap 2234 2237 image</em></a> is a file that can be quickly mapped into a 2235 2238 process's address space. Conceptually, it's not too different … … 2242 2245 standard full heap image files on different platforms; see 2243 2246 <a class="xref" href="#Platform-specific-filename-conventions" title="Table 3.1. Platform-specific filename conventions">Table 3.1, âPlatform-specific filename conventionsâ</a>.</p> 2244 <p xmlns="http://www.w3.org/1999/xhtml">A <a id="id 637240" class="indexterm"></a> bootstrapping image is a minimal2247 <p xmlns="http://www.w3.org/1999/xhtml">A <a id="id589734" class="indexterm"></a> bootstrapping image is a minimal 2245 2248 heap image used in the process of building Clozure CL itself. The 2246 2249 bootstrapping image contains just enough code to load the rest … … 2254 2257 as-yet-unsupported ones) has a uniquely named subdirectory of 2255 2258 <code class="literal">ccl/lisp-kernel/</code>; each such 2256 <a id="id 625433" class="indexterm"></a>2259 <a id="id593776" class="indexterm"></a> 2257 2260 contains a Makefile and may contain some auxiliary files (linker 2258 2261 scripts, etc.) that are used to build the lisp kernel on a … … 2829 2832 <pre xmlns="http://www.w3.org/1999/xhtml" class="programlisting"> 2830 2833 $ cd ccl # wherever your ccl directory is 2831 $ ./<em class="replaceable"><code>KERNEL</code></em> <em class="replaceable"><code>BOOT_IMAGE</code></em>2834 $ ./<em class="replaceable"><code>KERNEL</code></em> --image-name <em class="replaceable"><code>BOOT_IMAGE</code></em> --no-init 2832 2835 </pre> 2833 2836 <p xmlns="http://www.w3.org/1999/xhtml">Where <em class="replaceable"><code>KERNEL</code></em> and … … 2843 2846 image:</p> 2844 2847 <pre xmlns="http://www.w3.org/1999/xhtml" class="programlisting"> 2845 ? (ccl:save-application "<em class="replaceable"><code>image_name</code></em>") ; Overw iting the existing heap image2848 ? (ccl:save-application "<em class="replaceable"><code>image_name</code></em>") ; Overwriting the existing heap image 2846 2849 </pre> 2847 2850 <p xmlns="http://www.w3.org/1999/xhtml">Where <em class="replaceable"><code>image_name</code></em> is the name of … … 3089 3092 </p> 3090 3093 <p xmlns="http://www.w3.org/1999/xhtml"> 3091 <a id="id6 27657" class="indexterm"></a>3094 <a id="id603376" class="indexterm"></a> 3092 3095 <span class="command"><strong><em class="varname"><a id="trace"></a>TRACE</em> {<em class="replaceable"><code>keyword</code></em> 3093 3096 <em class="replaceable"><code>global-value</code></em>}* {<em class="replaceable"><code>spec</code></em> | … … 3533 3536 </div> 3534 3537 <p xmlns="http://www.w3.org/1999/xhtml"> 3535 <a id="id6 40691" class="indexterm"></a>3538 <a id="id614657" class="indexterm"></a> 3536 3539 <span class="command"><strong><em class="varname"><a id="trace-level"></a>CCL:*TRACE-LEVEL*</em> [Variable]</strong></span> 3537 3540 </p> 3538 3541 <p xmlns="http://www.w3.org/1999/xhtml">Variable bound to the current nesting level during execution of before and after trace actions. The default printing actions use it to determine the amount of indentation.</p> 3539 3542 <p xmlns="http://www.w3.org/1999/xhtml"> 3540 <a id="id6 40717" class="indexterm"></a>3543 <a id="id614684" class="indexterm"></a> 3541 3544 <span class="command"><strong><em class="varname"><a id="trace-max-indent"></a>CCL:*TRACE-MAX-INDENT*</em> [Variable]</strong></span> 3542 3545 </p> 3543 3546 <p xmlns="http://www.w3.org/1999/xhtml">The default before and after print actions will not indent by more than the value of <em class="varname">ccl:*trace-max-indent*</em> regardless of the current trace level.</p> 3544 3547 <p xmlns="http://www.w3.org/1999/xhtml"> 3545 <a id="id6 40746" class="indexterm"></a>3548 <a id="id614712" class="indexterm"></a> 3546 3549 <span class="command"><strong><em class="varname"><a id="trace-function"></a>CCL:TRACE-FUNCTION</em> <em class="replaceable"><code>spec</code></em> <em class="varname">&key</em> {<em class="replaceable"><code>keyword</code></em> <em class="replaceable"><code>value</code></em>}* [Function]</strong></span> 3547 3550 </p> … … 3551 3554 </p> 3552 3555 <p xmlns="http://www.w3.org/1999/xhtml"> 3553 <a id="id6 40795" class="indexterm"></a>3556 <a id="id614761" class="indexterm"></a> 3554 3557 <span class="command"><strong><em class="varname"><a id="trace-print-level"></a>CCL:*TRACE-PRINT-LEVEL*</em> [Variable]</strong></span> 3555 3558 </p> … … 3559 3562 explicit printing done by user code.</p> 3560 3563 <p xmlns="http://www.w3.org/1999/xhtml"> 3561 <a id="id6 40830" class="indexterm"></a>3564 <a id="id614796" class="indexterm"></a> 3562 3565 <span class="command"><strong><em class="varname"><a id="trace-print-length"></a>CCL:*TRACE-PRINT-LENGTH*</em> [Variable]</strong></span> 3563 3566 </p> … … 3567 3570 explicit printing done by user code.</p> 3568 3571 <p xmlns="http://www.w3.org/1999/xhtml"> 3569 <a id="id6 40864" class="indexterm"></a>3572 <a id="id614830" class="indexterm"></a> 3570 3573 <span class="command"><strong><em class="varname"><a id="trace-bar-frequency"></a>CCL:*TRACE-BAR-FREQUENCY*</em> [Variable]</strong></span> 3571 3574 </p> … … 3616 3619 <div> 3617 3620 <div class="refsect1" lang="en" xml:lang="en"> 3618 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 41026"></a>3621 <a xmlns="http://www.w3.org/1999/xhtml" id="id614993"></a> 3619 3622 <div class="header">Arguments and Values:</div> 3620 3623 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">spec</span></i>--- … … 3651 3654 </div> 3652 3655 <div class="refsect1" lang="en" xml:lang="en"> 3653 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 41134"></a>3656 <a xmlns="http://www.w3.org/1999/xhtml" id="id615100"></a> 3654 3657 <div class="header">Examples:</div> 3655 3658 <p xmlns="http://www.w3.org/1999/xhtml"> … … 3696 3699 <div> 3697 3700 <div class="refsect1" lang="en" xml:lang="en"> 3698 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 41233"></a>3701 <a xmlns="http://www.w3.org/1999/xhtml" id="id615199"></a> 3699 3702 <div class="header">Description:</div> 3700 3703 <p xmlns="http://www.w3.org/1999/xhtml"> … … 3711 3714 </div> 3712 3715 <div class="refsect1" lang="en" xml:lang="en"> 3713 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 41300"></a>3716 <a xmlns="http://www.w3.org/1999/xhtml" id="id615266"></a> 3714 3717 <div class="header">Arguments and Values:</div> 3715 3718 <p xmlns="http://www.w3.org/1999/xhtml"> … … 3735 3738 <div> 3736 3739 <div class="refsect1" lang="en" xml:lang="en"> 3737 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 41378"></a>3740 <a xmlns="http://www.w3.org/1999/xhtml" id="id615344"></a> 3738 3741 <div class="header">Description:</div> 3739 3742 <p xmlns="http://www.w3.org/1999/xhtml"> … … 3747 3750 </div> 3748 3751 <div class="refsect1" lang="en" xml:lang="en"> 3749 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 41426"></a>3752 <a xmlns="http://www.w3.org/1999/xhtml" id="id615392"></a> 3750 3753 <div class="header">Arguments and Values:</div> 3751 3754 <p xmlns="http://www.w3.org/1999/xhtml"> … … 3907 3910 <div> 3908 3911 <div class="refsect1" lang="en" xml:lang="en"> 3909 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 41960"></a>3912 <a xmlns="http://www.w3.org/1999/xhtml" id="id615926"></a> 3910 3913 <div class="header">Description:</div> 3911 3914 <p xmlns="http://www.w3.org/1999/xhtml">The value of this variable is used when :EXTERNAL-FORMAT is … … 3933 3936 <div> 3934 3937 <div class="refsect1" lang="en" xml:lang="en"> 3935 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 42022"></a>3938 <a xmlns="http://www.w3.org/1999/xhtml" id="id615988"></a> 3936 3939 <div class="header">Description:</div> 3937 3940 <p xmlns="http://www.w3.org/1999/xhtml">The value of this variable is used when an external-format … … 3965 3968 <div> 3966 3969 <div class="refsect1" lang="en" xml:lang="en"> 3967 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 42104"></a>3970 <a xmlns="http://www.w3.org/1999/xhtml" id="id616070"></a> 3968 3971 <div class="header">Arguments and Values:</div> 3969 3972 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">domain</span></i>---This is used to indicate where the external … … 3999 4002 </div> 4000 4003 <div class="refsect1" lang="en" xml:lang="en"> 4001 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 58490"></a>4004 <a xmlns="http://www.w3.org/1999/xhtml" id="id632629"></a> 4002 4005 <div class="header">Description:</div> 4003 4006 <p xmlns="http://www.w3.org/1999/xhtml">Despite the function's name, it doesn't necessarily create a … … 4172 4175 <div> 4173 4176 <div> 4174 <h4 class="title"><a id="id6 58824"></a>4.5.4.1. Encoding Problems</h4>4177 <h4 class="title"><a id="id632963"></a>4.5.4.1. Encoding Problems</h4> 4175 4178 </div> 4176 4179 </div> … … 4188 4191 <div> 4189 4192 <div> 4190 <h4 class="title"><a id="id6 58837"></a>4.5.4.2. Byte Order Marks</h4>4193 <h4 class="title"><a id="id632976"></a>4.5.4.2. Byte Order Marks</h4> 4191 4194 </div> 4192 4195 </div> … … 4216 4219 <div> 4217 4220 <div> 4218 <h4 class="title"><a id="id6 58871"></a>4.5.4.3. <span class="function"><strong>DESCRIBE-CHARACTER-ENCODINGS</strong></span></h4>4221 <h4 class="title"><a id="id633010"></a>4.5.4.3. <span class="function"><strong>DESCRIBE-CHARACTER-ENCODINGS</strong></span></h4> 4219 4222 </div> 4220 4223 </div> … … 4238 4241 <div> 4239 4242 <div class="refsect1" lang="en" xml:lang="en"> 4240 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 58933"></a>4243 <a xmlns="http://www.w3.org/1999/xhtml" id="id633072"></a> 4241 4244 <div class="header">Description:</div> 4242 4245 <p xmlns="http://www.w3.org/1999/xhtml">Writes descriptions of all defined character encodings … … 4247 4250 </div> 4248 4251 <div class="refsect1" lang="en" xml:lang="en"> 4249 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 58948"></a>4252 <a xmlns="http://www.w3.org/1999/xhtml" id="id633087"></a> 4250 4253 <div class="header">See Also:</div> 4251 4254 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#Character-Encodings" title="4.5.4. Character Encodings">Section 4.5.4, âCharacter Encodingsâ</a>, <a class="xref" href="#External-Formats" title="4.5.2. External Formats">Section 4.5.2, âExternal Formatsâ</a>, <a class="xref" href="#Supported-Character-Encodings" title="4.5.4.4. Supported Character Encodings">Section 4.5.4.4, âSupported Character Encodingsâ</a></span> … … 4702 4705 <div> 4703 4706 <div> 4704 <h4 class="title"><a id="id6 59670"></a>4.5.4.5. Encoding and Decoding Strings</h4>4707 <h4 class="title"><a id="id633809"></a>4.5.4.5. Encoding and Decoding Strings</h4> 4705 4708 </div> 4706 4709 </div> … … 4727 4730 <div> 4728 4731 <div class="refsect1" lang="en" xml:lang="en"> 4729 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 59746"></a>4732 <a xmlns="http://www.w3.org/1999/xhtml" id="id633885"></a> 4730 4733 <div class="header">Description:</div> 4731 4734 <p xmlns="http://www.w3.org/1999/xhtml"> … … 4758 4761 <div> 4759 4762 <div class="refsect1" lang="en" xml:lang="en"> 4760 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 59841"></a>4763 <a xmlns="http://www.w3.org/1999/xhtml" id="id633980"></a> 4761 4764 <div class="header">Description:</div> 4762 4765 <p xmlns="http://www.w3.org/1999/xhtml"> … … 4807 4810 <div> 4808 4811 <div class="refsect1" lang="en" xml:lang="en"> 4809 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 59975"></a>4812 <a xmlns="http://www.w3.org/1999/xhtml" id="id634114"></a> 4810 4813 <div class="header">Description:</div> 4811 4814 <p xmlns="http://www.w3.org/1999/xhtml"> … … 4860 4863 <div> 4861 4864 <div class="refsect1" lang="en" xml:lang="en"> 4862 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 60106"></a>4865 <a xmlns="http://www.w3.org/1999/xhtml" id="id634244"></a> 4863 4866 <div class="header">Description:</div> 4864 4867 <p xmlns="http://www.w3.org/1999/xhtml"> … … 4910 4913 </div> 4911 4914 <p xmlns="http://www.w3.org/1999/xhtml">Clozure CL sets up logical pathname translations for logical hosts: <code class="literal">ccl</code> and <code class="literal">home</code></p> 4912 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 60194" class="indexterm"></a>4915 <a xmlns="http://www.w3.org/1999/xhtml" id="id634333" class="indexterm"></a> 4913 4916 <p xmlns="http://www.w3.org/1999/xhtml">The <code class="literal">CCL</code> logical host should point to the 4914 4917 <code class="literal">ccl</code> directory. It is used for a variety of … … 4969 4972 <div> 4970 4973 <div> 4971 <h4 class="title"><a id="id6 60297"></a>4.6.3.1. Working with native namestrings</h4>4974 <h4 class="title"><a id="id634436"></a>4.6.3.1. Working with native namestrings</h4> 4972 4975 </div> 4973 4976 </div> … … 4988 4991 <div> 4989 4992 <div class="refsect1" lang="en" xml:lang="en"> 4990 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 60343"></a>4993 <a xmlns="http://www.w3.org/1999/xhtml" id="id634482"></a> 4991 4994 <div class="header">Description:</div> 4992 4995 <p xmlns="http://www.w3.org/1999/xhtml"> … … 5019 5022 <div> 5020 5023 <div class="refsect1" lang="en" xml:lang="en"> 5021 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 60417"></a>5024 <a xmlns="http://www.w3.org/1999/xhtml" id="id634556"></a> 5022 5025 <div class="header">Description:</div> 5023 5026 <p xmlns="http://www.w3.org/1999/xhtml"> … … 5142 5145 platforms.</p> 5143 5146 <p xmlns="http://www.w3.org/1999/xhtml"> 5144 <a id="id6 60591" class="indexterm"></a>5147 <a id="id634730" class="indexterm"></a> 5145 5148 <span class="command"><strong><em class="varname"><a id="map-file-to-ivector"></a>CCL:MAP-FILE-TO-IVECTOR</em> 5146 5149 <em class="parameter"><code>pathname</code></em> … … 5202 5205 a memory error.</p> 5203 5206 <p xmlns="http://www.w3.org/1999/xhtml"> 5204 <a id="id6 60724" class="indexterm"></a>5207 <a id="id634863" class="indexterm"></a> 5205 5208 <span class="command"><strong><em class="varname"><a id="unmap-ivector"></a>CCL:UNMAP-IVECTOR</em> 5206 5209 <em class="parameter"><code>displaced-array</code></em> … … 5214 5217 target is an empty vector (of length zero).</p> 5215 5218 <p xmlns="http://www.w3.org/1999/xhtml"> 5216 <a id="id6 60760" class="indexterm"></a>5219 <a id="id634899" class="indexterm"></a> 5217 5220 <span class="command"><strong><em class="varname"><a id="map-file-to-octet-vector"></a>CCL:MAP-FILE-TO-OCTET-VECTOR</em> 5218 5221 <em class="parameter"><code>pathname</code></em> … … 5224 5227 bytes.</p> 5225 5228 <p xmlns="http://www.w3.org/1999/xhtml"> 5226 <a id="id6 60792" class="indexterm"></a>5229 <a id="id634931" class="indexterm"></a> 5227 5230 <span class="command"><strong><em class="varname"><a id="unmap-octet-vector"></a>CCL:UNMAP-OCTET-VECTOR</em> 5228 5231 <em class="parameter"><code>displaced-array</code></em> … … 5263 5266 static.</p> 5264 5267 <p xmlns="http://www.w3.org/1999/xhtml"> 5265 <a id="id6 60866" class="indexterm"></a>5268 <a id="id635005" class="indexterm"></a> 5266 5269 <span class="command"><strong><em class="varname"><a id="defstatic"></a>DEFSTATIC</em> 5267 5270 <em class="parameter"><code>var</code></em> … … 5317 5320 </div> 5318 5321 </div> 5319 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 60978" class="indexterm"></a>5322 <a xmlns="http://www.w3.org/1999/xhtml" id="id635117" class="indexterm"></a> 5320 5323 <p xmlns="http://www.w3.org/1999/xhtml">Clozure CL provides the 5321 5324 function <code class="literal">CCL:SAVE-APPLICATION</code>, which creates a file … … 5397 5400 converted, because address 0 can always be relied upon to refer to 5398 5401 the same thing.</p> 5399 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 61200" class="indexterm"></a>5402 <a xmlns="http://www.w3.org/1999/xhtml" id="id635339" class="indexterm"></a> 5400 5403 <p xmlns="http://www.w3.org/1999/xhtml">As of Clozure CL 1.2, the constant <code class="literal">CCL:+NULL-PTR+</code> 5401 5404 refers to a <code class="literal">MACPTR</code> object that points to address 0.</p> … … 5408 5411 or <code class="literal">ccl64</code> script.</p> 5409 5412 <p xmlns="http://www.w3.org/1999/xhtml"> 5410 <a id="id6 61247" class="indexterm"></a>5413 <a id="id635386" class="indexterm"></a> 5411 5414 <span class="command"><strong><em class="varname"><a id="save-application"></a>SAVE-APPLICATION</em> 5412 5415 <em class="parameter"><code>filename</code></em> … … 5609 5612 <div> 5610 5613 <div class="refsect1" lang="en" xml:lang="en"> 5611 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 61650"></a>5614 <a xmlns="http://www.w3.org/1999/xhtml" id="id635789"></a> 5612 5615 <div class="header">Arguments and Values:</div> 5613 5616 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">out-file</span></i>--- … … 5623 5626 </div> 5624 5627 <div class="refsect1" lang="en" xml:lang="en"> 5625 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 61710"></a>5628 <a xmlns="http://www.w3.org/1999/xhtml" id="id635849"></a> 5626 5629 <div class="header">Description:</div> 5627 5630 <p xmlns="http://www.w3.org/1999/xhtml"> … … 5683 5686 <div> 5684 5687 <div class="refsect1" lang="en" xml:lang="en"> 5685 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 61801"></a>5688 <a xmlns="http://www.w3.org/1999/xhtml" id="id635939"></a> 5686 5689 <div class="header">Arguments and Values:</div> 5687 5690 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">mode</span></i>--- … … 5691 5694 </div> 5692 5695 <div class="refsect1" lang="en" xml:lang="en"> 5693 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 61824"></a>5696 <a xmlns="http://www.w3.org/1999/xhtml" id="id635963"></a> 5694 5697 <div class="header">Description:</div> 5695 5698 <p xmlns="http://www.w3.org/1999/xhtml"> … … 5730 5733 <div> 5731 5734 <div class="refsect1" lang="en" xml:lang="en"> 5732 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 61919"></a>5735 <a xmlns="http://www.w3.org/1999/xhtml" id="id636058"></a> 5733 5736 <div class="header">Arguments and Values:</div> 5734 5737 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">rounding-mode</span></i>--- … … 5739 5742 </div> 5740 5743 <div class="refsect1" lang="en" xml:lang="en"> 5741 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 61956"></a>5744 <a xmlns="http://www.w3.org/1999/xhtml" id="id636094"></a> 5742 5745 <div class="header">Description:</div> 5743 5746 <p xmlns="http://www.w3.org/1999/xhtml"> … … 5788 5791 <div> 5789 5792 <div class="refsect1" lang="en" xml:lang="en"> 5790 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62031"></a>5793 <a xmlns="http://www.w3.org/1999/xhtml" id="id636169"></a> 5791 5794 <div class="header">Arguments and Values:</div> 5792 5795 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">object</span></i>--- … … 5795 5798 </div> 5796 5799 <div class="refsect1" lang="en" xml:lang="en"> 5797 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62053"></a>5800 <a xmlns="http://www.w3.org/1999/xhtml" id="id636192"></a> 5798 5801 <div class="header">Description:</div> 5799 5802 <p xmlns="http://www.w3.org/1999/xhtml"> … … 5962 5965 <div> 5963 5966 <div class="refsect1" lang="en" xml:lang="en"> 5964 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62227"></a>5967 <a xmlns="http://www.w3.org/1999/xhtml" id="id636366"></a> 5965 5968 <div class="header">Description:</div> 5966 5969 <p xmlns="http://www.w3.org/1999/xhtml"> … … 5996 5999 <div> 5997 6000 <div class="refsect1" lang="en" xml:lang="en"> 5998 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62276"></a>6001 <a xmlns="http://www.w3.org/1999/xhtml" id="id636414"></a> 5999 6002 <div class="header">Discussion:</div> 6000 6003 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6014 6017 </div> 6015 6018 <div class="refsect1" lang="en" xml:lang="en"> 6016 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62329"></a>6019 <a xmlns="http://www.w3.org/1999/xhtml" id="id636468"></a> 6017 6020 <div class="header">Restarts:</div> 6018 6021 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6082 6085 <div> 6083 6086 <div> 6084 <h4 class="title"><a id="id6 62387"></a>4.12.5.1. Fancy arrays</h4>6087 <h4 class="title"><a id="id636525"></a>4.12.5.1. Fancy arrays</h4> 6085 6088 </div> 6086 6089 </div> … … 6109 6112 <div> 6110 6113 <div> 6111 <h4 class="title"><a id="id6 62406"></a>4.12.5.2. Hash tables</h4>6114 <h4 class="title"><a id="id636545"></a>4.12.5.2. Hash tables</h4> 6112 6115 </div> 6113 6116 </div> … … 6157 6160 <div> 6158 6161 <div> 6159 <h4 class="title"><a id="id6 62436"></a>4.12.5.3. Lists</h4>6162 <h4 class="title"><a id="id636575"></a>4.12.5.3. Lists</h4> 6160 6163 </div> 6161 6164 </div> … … 6350 6353 <div> 6351 6354 <div class="refsect1" lang="en" xml:lang="en"> 6352 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62670"></a>6355 <a xmlns="http://www.w3.org/1999/xhtml" id="id636809"></a> 6353 6356 <div class="header">Arguments and Values:</div> 6354 6357 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">output-file</span></i>--- … … 6379 6382 </div> 6380 6383 <div class="refsect1" lang="en" xml:lang="en"> 6381 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62757"></a>6384 <a xmlns="http://www.w3.org/1999/xhtml" id="id636896"></a> 6382 6385 <div class="header">Example:</div> 6383 6386 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6413 6416 <div> 6414 6417 <div class="refsect1" lang="en" xml:lang="en"> 6415 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62836"></a>6418 <a xmlns="http://www.w3.org/1999/xhtml" id="id636975"></a> 6416 6419 <div class="header">Description:</div> 6417 6420 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6435 6438 <div> 6436 6439 <div class="refsect1" lang="en" xml:lang="en"> 6437 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62875"></a>6440 <a xmlns="http://www.w3.org/1999/xhtml" id="id637013"></a> 6438 6441 <div class="header">Description:</div> 6439 6442 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6461 6464 <div> 6462 6465 <div class="refsect1" lang="en" xml:lang="en"> 6463 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62937"></a>6466 <a xmlns="http://www.w3.org/1999/xhtml" id="id637076"></a> 6464 6467 <div class="header">Description:</div> 6465 6468 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6487 6490 <div> 6488 6491 <div class="refsect1" lang="en" xml:lang="en"> 6489 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 62994"></a>6492 <a xmlns="http://www.w3.org/1999/xhtml" id="id637133"></a> 6490 6493 <div class="header">Description:</div> 6491 6494 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6518 6521 <div> 6519 6522 <div class="refsect1" lang="en" xml:lang="en"> 6520 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63058"></a>6523 <a xmlns="http://www.w3.org/1999/xhtml" id="id637196"></a> 6521 6524 <div class="header">Description:</div> 6522 6525 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6545 6548 <div> 6546 6549 <div class="refsect1" lang="en" xml:lang="en"> 6547 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63125"></a>6550 <a xmlns="http://www.w3.org/1999/xhtml" id="id637264"></a> 6548 6551 <div class="header">Description:</div> 6549 6552 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6568 6571 <div> 6569 6572 <div class="refsect1" lang="en" xml:lang="en"> 6570 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63176"></a>6573 <a xmlns="http://www.w3.org/1999/xhtml" id="id637315"></a> 6571 6574 <div class="header">Description:</div> 6572 6575 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6592 6595 <div> 6593 6596 <div class="refsect1" lang="en" xml:lang="en"> 6594 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63226"></a>6597 <a xmlns="http://www.w3.org/1999/xhtml" id="id637365"></a> 6595 6598 <div class="header">Description:</div> 6596 6599 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6619 6622 <div> 6620 6623 <div class="refsect1" lang="en" xml:lang="en"> 6621 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63289"></a>6624 <a xmlns="http://www.w3.org/1999/xhtml" id="id637428"></a> 6622 6625 <div class="header">Description:</div> 6623 6626 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6646 6649 <div> 6647 6650 <div class="refsect1" lang="en" xml:lang="en"> 6648 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63356"></a>6651 <a xmlns="http://www.w3.org/1999/xhtml" id="id637495"></a> 6649 6652 <div class="header">Description:</div> 6650 6653 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6813 6816 <div> 6814 6817 <div class="refsect1" lang="en" xml:lang="en"> 6815 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63607"></a>6818 <a xmlns="http://www.w3.org/1999/xhtml" id="id637746"></a> 6816 6819 <div class="header">Description:</div> 6817 6820 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6839 6842 <div> 6840 6843 <div class="refsect1" lang="en" xml:lang="en"> 6841 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63667"></a>6844 <a xmlns="http://www.w3.org/1999/xhtml" id="id637806"></a> 6842 6845 <div class="header">Description:</div> 6843 6846 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6873 6876 <div> 6874 6877 <div class="refsect1" lang="en" xml:lang="en"> 6875 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63745"></a>6878 <a xmlns="http://www.w3.org/1999/xhtml" id="id637884"></a> 6876 6879 <div class="header">Arguments and Values:</div> 6877 6880 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">collection</span></i>--- … … 6884 6887 </div> 6885 6888 <div class="refsect1" lang="en" xml:lang="en"> 6886 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63782"></a>6889 <a xmlns="http://www.w3.org/1999/xhtml" id="id637921"></a> 6887 6890 <div class="header">Description:</div> 6888 6891 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6918 6921 <div> 6919 6922 <div class="refsect1" lang="en" xml:lang="en"> 6920 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63862"></a>6923 <a xmlns="http://www.w3.org/1999/xhtml" id="id638001"></a> 6921 6924 <div class="header">Arguments and Values:</div> 6922 6925 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">collection</span></i>--- … … 6935 6938 </div> 6936 6939 <div class="refsect1" lang="en" xml:lang="en"> 6937 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 63923"></a>6940 <a xmlns="http://www.w3.org/1999/xhtml" id="id638062"></a> 6938 6941 <div class="header">Description:</div> 6939 6942 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6969 6972 <div> 6970 6973 <div class="refsect1" lang="en" xml:lang="en"> 6971 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64004"></a>6974 <a xmlns="http://www.w3.org/1999/xhtml" id="id638142"></a> 6972 6975 <div class="header">Description:</div> 6973 6976 <p xmlns="http://www.w3.org/1999/xhtml"> … … 6994 6997 <div> 6995 6998 <div class="refsect1" lang="en" xml:lang="en"> 6996 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64055"></a>6999 <a xmlns="http://www.w3.org/1999/xhtml" id="id638194"></a> 6997 7000 <div class="header">Description:</div> 6998 7001 <p xmlns="http://www.w3.org/1999/xhtml"> … … 7070 7073 <div> 7071 7074 <div class="refsect1" lang="en" xml:lang="en"> 7072 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64167"></a>7075 <a xmlns="http://www.w3.org/1999/xhtml" id="id638306"></a> 7073 7076 <div class="header">Summary:</div> 7074 7077 <p xmlns="http://www.w3.org/1999/xhtml"> … … 7105 7108 <div> 7106 7109 <div class="refsect1" lang="en" xml:lang="en"> 7107 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64229"></a>7110 <a xmlns="http://www.w3.org/1999/xhtml" id="id638368"></a> 7108 7111 <div class="header">Summary:</div> 7109 7112 <p xmlns="http://www.w3.org/1999/xhtml"> … … 7136 7139 <div> 7137 7140 <div class="refsect1" lang="en" xml:lang="en"> 7138 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64286"></a>7141 <a xmlns="http://www.w3.org/1999/xhtml" id="id638425"></a> 7139 7142 <div class="header">Summary:</div> 7140 7143 <p xmlns="http://www.w3.org/1999/xhtml"> … … 7161 7164 <div> 7162 7165 <div class="refsect1" lang="en" xml:lang="en"> 7163 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64333"></a>7166 <a xmlns="http://www.w3.org/1999/xhtml" id="id638472"></a> 7164 7167 <div class="header">Description:</div> 7165 7168 <p xmlns="http://www.w3.org/1999/xhtml"> … … 7394 7397 <div> 7395 7398 <div> 7396 <h4 class="title"><a id="id 619574"></a>5.4.2.1. Checking for Updates</h4>7399 <h4 class="title"><a id="id578380"></a>5.4.2.1. Checking for Updates</h4> 7397 7400 </div> 7398 7401 </div> … … 7526 7529 the required subsystems, if necessary.</p> 7527 7530 <p xmlns="http://www.w3.org/1999/xhtml"> 7528 <a id="id 620391" class="indexterm"></a>7531 <a id="id571166" class="indexterm"></a> 7529 7532 <span class="command"><strong><em class="varname"><a id="build-application"></a>BUILD-APPLICATION</em> <em class="varname">&key</em> 7530 7533 (<em class="parameter"><code>name</code></em> <em class="replaceable"><code>"MyApplication"</code></em>) … … 8326 8329 <div> 8327 8330 <div class="refsect1" lang="en" xml:lang="en"> 8328 <a xmlns="http://www.w3.org/1999/xhtml" id="id 617040"></a>8331 <a xmlns="http://www.w3.org/1999/xhtml" id="id588551"></a> 8329 8332 <div class="header">Description:</div> 8330 8333 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8348 8351 <div> 8349 8352 <div class="refsect1" lang="en" xml:lang="en"> 8350 <a xmlns="http://www.w3.org/1999/xhtml" id="id 617093"></a>8353 <a xmlns="http://www.w3.org/1999/xhtml" id="id588604"></a> 8351 8354 <div class="header">Description:</div> 8352 8355 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8375 8378 <div> 8376 8379 <div class="refsect1" lang="en" xml:lang="en"> 8377 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 58017"></a>8380 <a xmlns="http://www.w3.org/1999/xhtml" id="id632206"></a> 8378 8381 <div class="header">Description:</div> 8379 8382 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 8395 8398 <div> 8396 8399 <div class="refsect1" lang="en" xml:lang="en"> 8397 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 58070"></a>8400 <a xmlns="http://www.w3.org/1999/xhtml" id="id632259"></a> 8398 8401 <div class="header">Description:</div> 8399 8402 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8419 8422 <div> 8420 8423 <div class="refsect1" lang="en" xml:lang="en"> 8421 <a xmlns="http://www.w3.org/1999/xhtml" id="id 632633"></a>8424 <a xmlns="http://www.w3.org/1999/xhtml" id="id577202"></a> 8422 8425 <div class="header">Description:</div> 8423 8426 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8443 8446 <div> 8444 8447 <div class="refsect1" lang="en" xml:lang="en"> 8445 <a xmlns="http://www.w3.org/1999/xhtml" id="id 632686"></a>8448 <a xmlns="http://www.w3.org/1999/xhtml" id="id577256"></a> 8446 8449 <div class="header">Description:</div> 8447 8450 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8466 8469 <div> 8467 8470 <div class="refsect1" lang="en" xml:lang="en"> 8468 <a xmlns="http://www.w3.org/1999/xhtml" id="id 632740"></a>8471 <a xmlns="http://www.w3.org/1999/xhtml" id="id577309"></a> 8469 8472 <div class="header">Description:</div> 8470 8473 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8491 8494 <div> 8492 8495 <div class="refsect1" lang="en" xml:lang="en"> 8493 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 55890"></a>8496 <a xmlns="http://www.w3.org/1999/xhtml" id="id630023"></a> 8494 8497 <div class="header">Description:</div> 8495 8498 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8516 8519 <div> 8517 8520 <div class="refsect1" lang="en" xml:lang="en"> 8518 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 55946"></a>8521 <a xmlns="http://www.w3.org/1999/xhtml" id="id630078"></a> 8519 8522 <div class="header">Description:</div> 8520 8523 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8602 8605 <div> 8603 8606 <div class="refsect1" lang="en" xml:lang="en"> 8604 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56069"></a>8607 <a xmlns="http://www.w3.org/1999/xhtml" id="id630201"></a> 8605 8608 <div class="header">Description:</div> 8606 8609 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8624 8627 <div> 8625 8628 <div class="refsect1" lang="en" xml:lang="en"> 8626 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56124"></a>8629 <a xmlns="http://www.w3.org/1999/xhtml" id="id630255"></a> 8627 8630 <div class="header">Description:</div> 8628 8631 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8646 8649 <div> 8647 8650 <div class="refsect1" lang="en" xml:lang="en"> 8648 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56177"></a>8651 <a xmlns="http://www.w3.org/1999/xhtml" id="id630309"></a> 8649 8652 <div class="header">Description:</div> 8650 8653 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8669 8672 <div> 8670 8673 <div class="refsect1" lang="en" xml:lang="en"> 8671 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56235"></a>8674 <a xmlns="http://www.w3.org/1999/xhtml" id="id630367"></a> 8672 8675 <div class="header">Description:</div> 8673 8676 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8691 8694 <div> 8692 8695 <div class="refsect1" lang="en" xml:lang="en"> 8693 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56290"></a>8696 <a xmlns="http://www.w3.org/1999/xhtml" id="id630421"></a> 8694 8697 <div class="header">Description:</div> 8695 8698 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8715 8718 <div> 8716 8719 <div class="refsect1" lang="en" xml:lang="en"> 8717 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56348"></a>8720 <a xmlns="http://www.w3.org/1999/xhtml" id="id630480"></a> 8718 8721 <div class="header">Description:</div> 8719 8722 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8739 8742 <div> 8740 8743 <div class="refsect1" lang="en" xml:lang="en"> 8741 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56414"></a>8744 <a xmlns="http://www.w3.org/1999/xhtml" id="id630546"></a> 8742 8745 <div class="header">Description:</div> 8743 8746 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 8759 8762 <div> 8760 8763 <div class="refsect1" lang="en" xml:lang="en"> 8761 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56467"></a>8764 <a xmlns="http://www.w3.org/1999/xhtml" id="id630599"></a> 8762 8765 <div class="header">Description:</div> 8763 8766 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8794 8797 <div> 8795 8798 <div class="refsect1" lang="en" xml:lang="en"> 8796 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56537"></a>8799 <a xmlns="http://www.w3.org/1999/xhtml" id="id630669"></a> 8797 8800 <div class="header">Description:</div> 8798 8801 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8819 8822 <div> 8820 8823 <div class="refsect1" lang="en" xml:lang="en"> 8821 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56606"></a>8824 <a xmlns="http://www.w3.org/1999/xhtml" id="id630738"></a> 8822 8825 <div class="header">Description:</div> 8823 8826 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8842 8845 <div> 8843 8846 <div class="refsect1" lang="en" xml:lang="en"> 8844 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56661"></a>8847 <a xmlns="http://www.w3.org/1999/xhtml" id="id630793"></a> 8845 8848 <div class="header">Description:</div> 8846 8849 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8865 8868 <div> 8866 8869 <div class="refsect1" lang="en" xml:lang="en"> 8867 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56717"></a>8870 <a xmlns="http://www.w3.org/1999/xhtml" id="id630848"></a> 8868 8871 <div class="header">Description:</div> 8869 8872 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8905 8908 <div> 8906 8909 <div class="refsect1" lang="en" xml:lang="en"> 8907 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56795"></a>8910 <a xmlns="http://www.w3.org/1999/xhtml" id="id630927"></a> 8908 8911 <div class="header">Description:</div> 8909 8912 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8928 8931 <div> 8929 8932 <div class="refsect1" lang="en" xml:lang="en"> 8930 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56851"></a>8933 <a xmlns="http://www.w3.org/1999/xhtml" id="id630983"></a> 8931 8934 <div class="header">Description:</div> 8932 8935 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8951 8954 <div> 8952 8955 <div class="refsect1" lang="en" xml:lang="en"> 8953 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56906"></a>8956 <a xmlns="http://www.w3.org/1999/xhtml" id="id631037"></a> 8954 8957 <div class="header">Description:</div> 8955 8958 <p xmlns="http://www.w3.org/1999/xhtml"> … … 8974 8977 <div> 8975 8978 <div class="refsect1" lang="en" xml:lang="en"> 8976 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 56964"></a>8979 <a xmlns="http://www.w3.org/1999/xhtml" id="id631096"></a> 8977 8980 <div class="header">Description:</div> 8978 8981 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 8994 8997 <div> 8995 8998 <div class="refsect1" lang="en" xml:lang="en"> 8996 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57021"></a>8999 <a xmlns="http://www.w3.org/1999/xhtml" id="id631153"></a> 8997 9000 <div class="header">Description:</div> 8998 9001 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9017 9020 <div> 9018 9021 <div class="refsect1" lang="en" xml:lang="en"> 9019 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57079"></a>9022 <a xmlns="http://www.w3.org/1999/xhtml" id="id631211"></a> 9020 9023 <div class="header">Description:</div> 9021 9024 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 9037 9040 <div> 9038 9041 <div class="refsect1" lang="en" xml:lang="en"> 9039 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57137"></a>9042 <a xmlns="http://www.w3.org/1999/xhtml" id="id631269"></a> 9040 9043 <div class="header">Description:</div> 9041 9044 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9062 9065 <div> 9063 9066 <div class="refsect1" lang="en" xml:lang="en"> 9064 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57193"></a>9067 <a xmlns="http://www.w3.org/1999/xhtml" id="id631325"></a> 9065 9068 <div class="header">Description:</div> 9066 9069 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 9082 9085 <div> 9083 9086 <div class="refsect1" lang="en" xml:lang="en"> 9084 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57247"></a>9087 <a xmlns="http://www.w3.org/1999/xhtml" id="id631379"></a> 9085 9088 <div class="header">Description:</div> 9086 9089 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9106 9109 <div> 9107 9110 <div class="refsect1" lang="en" xml:lang="en"> 9108 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57303"></a>9111 <a xmlns="http://www.w3.org/1999/xhtml" id="id631434"></a> 9109 9112 <div class="header">Description:</div> 9110 9113 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9131 9134 <div> 9132 9135 <div class="refsect1" lang="en" xml:lang="en"> 9133 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57362"></a>9136 <a xmlns="http://www.w3.org/1999/xhtml" id="id631493"></a> 9134 9137 <div class="header">Description:</div> 9135 9138 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9186 9189 <div> 9187 9190 <div class="refsect1" lang="en" xml:lang="en"> 9188 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57451"></a>9191 <a xmlns="http://www.w3.org/1999/xhtml" id="id631582"></a> 9189 9192 <div class="header">Description:</div> 9190 9193 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9210 9213 <div> 9211 9214 <div class="refsect1" lang="en" xml:lang="en"> 9212 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57507"></a>9215 <a xmlns="http://www.w3.org/1999/xhtml" id="id631638"></a> 9213 9216 <div class="header">Description:</div> 9214 9217 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9232 9235 <div> 9233 9236 <div class="refsect1" lang="en" xml:lang="en"> 9234 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57562"></a>9237 <a xmlns="http://www.w3.org/1999/xhtml" id="id631693"></a> 9235 9238 <div class="header">Description:</div> 9236 9239 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9256 9259 <div> 9257 9260 <div class="refsect1" lang="en" xml:lang="en"> 9258 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57624"></a>9261 <a xmlns="http://www.w3.org/1999/xhtml" id="id631756"></a> 9259 9262 <div class="header">Description:</div> 9260 9263 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9280 9283 <div> 9281 9284 <div class="refsect1" lang="en" xml:lang="en"> 9282 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57680"></a>9285 <a xmlns="http://www.w3.org/1999/xhtml" id="id631812"></a> 9283 9286 <div class="header">Description:</div> 9284 9287 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 9300 9303 <div> 9301 9304 <div class="refsect1" lang="en" xml:lang="en"> 9302 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57735"></a>9305 <a xmlns="http://www.w3.org/1999/xhtml" id="id631866"></a> 9303 9306 <div class="header">Description:</div> 9304 9307 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9323 9326 <div> 9324 9327 <div class="refsect1" lang="en" xml:lang="en"> 9325 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57790"></a>9328 <a xmlns="http://www.w3.org/1999/xhtml" id="id631921"></a> 9326 9329 <div class="header">Description:</div> 9327 9330 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9347 9350 <div> 9348 9351 <div class="refsect1" lang="en" xml:lang="en"> 9349 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57852"></a>9352 <a xmlns="http://www.w3.org/1999/xhtml" id="id631983"></a> 9350 9353 <div class="header">Description:</div> 9351 9354 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 9367 9370 <div> 9368 9371 <div class="refsect1" lang="en" xml:lang="en"> 9369 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 57907"></a>9372 <a xmlns="http://www.w3.org/1999/xhtml" id="id632038"></a> 9370 9373 <div class="header">Description:</div> 9371 9374 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9389 9392 <div> 9390 9393 <div class="refsect1" lang="en" xml:lang="en"> 9391 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80867"></a>9394 <a xmlns="http://www.w3.org/1999/xhtml" id="id655000"></a> 9392 9395 <div class="header">Description:</div> 9393 9396 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9412 9415 <div> 9413 9416 <div class="refsect1" lang="en" xml:lang="en"> 9414 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80914"></a>9417 <a xmlns="http://www.w3.org/1999/xhtml" id="id655047"></a> 9415 9418 <div class="header">Description:</div> 9416 9419 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9435 9438 <div> 9436 9439 <div class="refsect1" lang="en" xml:lang="en"> 9437 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80962"></a>9440 <a xmlns="http://www.w3.org/1999/xhtml" id="id655095"></a> 9438 9441 <div class="header">Description:</div> 9439 9442 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9461 9464 <div> 9462 9465 <div class="refsect1" lang="en" xml:lang="en"> 9463 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81011"></a>9466 <a xmlns="http://www.w3.org/1999/xhtml" id="id655144"></a> 9464 9467 <div class="header">Description:</div> 9465 9468 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9574 9577 <div> 9575 9578 <div class="refsect1" lang="en" xml:lang="en"> 9576 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81181"></a>9579 <a xmlns="http://www.w3.org/1999/xhtml" id="id655315"></a> 9577 9580 <div class="header">Description:</div> 9578 9581 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9597 9600 <div> 9598 9601 <div class="refsect1" lang="en" xml:lang="en"> 9599 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81228"></a>9602 <a xmlns="http://www.w3.org/1999/xhtml" id="id655362"></a> 9600 9603 <div class="header">Description:</div> 9601 9604 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9621 9624 <div> 9622 9625 <div class="refsect1" lang="en" xml:lang="en"> 9623 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81276"></a>9626 <a xmlns="http://www.w3.org/1999/xhtml" id="id655410"></a> 9624 9627 <div class="header">Description:</div> 9625 9628 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9644 9647 <div> 9645 9648 <div class="refsect1" lang="en" xml:lang="en"> 9646 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81323"></a>9649 <a xmlns="http://www.w3.org/1999/xhtml" id="id655457"></a> 9647 9650 <div class="header">Description:</div> 9648 9651 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9668 9671 <div> 9669 9672 <div class="refsect1" lang="en" xml:lang="en"> 9670 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81372"></a>9673 <a xmlns="http://www.w3.org/1999/xhtml" id="id655505"></a> 9671 9674 <div class="header">Description:</div> 9672 9675 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9692 9695 <div> 9693 9696 <div class="refsect1" lang="en" xml:lang="en"> 9694 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81425"></a>9697 <a xmlns="http://www.w3.org/1999/xhtml" id="id655561"></a> 9695 9698 <div class="header">Description:</div> 9696 9699 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9717 9720 <div> 9718 9721 <div class="refsect1" lang="en" xml:lang="en"> 9719 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81482"></a>9722 <a xmlns="http://www.w3.org/1999/xhtml" id="id655618"></a> 9720 9723 <div class="header">Description:</div> 9721 9724 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9742 9745 <div> 9743 9746 <div class="refsect1" lang="en" xml:lang="en"> 9744 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81537"></a>9747 <a xmlns="http://www.w3.org/1999/xhtml" id="id655673"></a> 9745 9748 <div class="header">Description:</div> 9746 9749 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9766 9769 <div> 9767 9770 <div class="refsect1" lang="en" xml:lang="en"> 9768 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81593"></a>9771 <a xmlns="http://www.w3.org/1999/xhtml" id="id655729"></a> 9769 9772 <div class="header">Description:</div> 9770 9773 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9791 9794 <div> 9792 9795 <div class="refsect1" lang="en" xml:lang="en"> 9793 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81659"></a>9796 <a xmlns="http://www.w3.org/1999/xhtml" id="id655795"></a> 9794 9797 <div class="header">Description:</div> 9795 9798 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9818 9821 <div> 9819 9822 <div class="refsect1" lang="en" xml:lang="en"> 9820 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81725"></a>9823 <a xmlns="http://www.w3.org/1999/xhtml" id="id655861"></a> 9821 9824 <div class="header">Description:</div> 9822 9825 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9841 9844 <div> 9842 9845 <div class="refsect1" lang="en" xml:lang="en"> 9843 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81791"></a>9846 <a xmlns="http://www.w3.org/1999/xhtml" id="id655927"></a> 9844 9847 <div class="header">Description:</div> 9845 9848 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9863 9866 <div> 9864 9867 <div class="refsect1" lang="en" xml:lang="en"> 9865 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81846"></a>9868 <a xmlns="http://www.w3.org/1999/xhtml" id="id655982"></a> 9866 9869 <div class="header">Description:</div> 9867 9870 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9895 9898 <div> 9896 9899 <div class="refsect1" lang="en" xml:lang="en"> 9897 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81922"></a>9900 <a xmlns="http://www.w3.org/1999/xhtml" id="id656058"></a> 9898 9901 <div class="header">Description:</div> 9899 9902 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 9915 9918 <div> 9916 9919 <div class="refsect1" lang="en" xml:lang="en"> 9917 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 81976"></a>9920 <a xmlns="http://www.w3.org/1999/xhtml" id="id656112"></a> 9918 9921 <div class="header">Description:</div> 9919 9922 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 9935 9938 <div> 9936 9939 <div class="refsect1" lang="en" xml:lang="en"> 9937 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82031"></a>9940 <a xmlns="http://www.w3.org/1999/xhtml" id="id656167"></a> 9938 9941 <div class="header">Description:</div> 9939 9942 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9972 9975 <div> 9973 9976 <div class="refsect1" lang="en" xml:lang="en"> 9974 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82106"></a>9977 <a xmlns="http://www.w3.org/1999/xhtml" id="id656242"></a> 9975 9978 <div class="header">Description:</div> 9976 9979 <p xmlns="http://www.w3.org/1999/xhtml"> … … 9994 9997 <div> 9995 9998 <div class="refsect1" lang="en" xml:lang="en"> 9996 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82160"></a>9999 <a xmlns="http://www.w3.org/1999/xhtml" id="id656297"></a> 9997 10000 <div class="header">Description:</div> 9998 10001 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10014 10017 <div> 10015 10018 <div class="refsect1" lang="en" xml:lang="en"> 10016 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82214"></a>10019 <a xmlns="http://www.w3.org/1999/xhtml" id="id656350"></a> 10017 10020 <div class="header">Description:</div> 10018 10021 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10040 10043 <div> 10041 10044 <div class="refsect1" lang="en" xml:lang="en"> 10042 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82270"></a>10045 <a xmlns="http://www.w3.org/1999/xhtml" id="id656406"></a> 10043 10046 <div class="header">Description:</div> 10044 10047 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10066 10069 <div> 10067 10070 <div class="refsect1" lang="en" xml:lang="en"> 10068 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82335"></a>10071 <a xmlns="http://www.w3.org/1999/xhtml" id="id656471"></a> 10069 10072 <div class="header">Description:</div> 10070 10073 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10086 10089 <div> 10087 10090 <div class="refsect1" lang="en" xml:lang="en"> 10088 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82389"></a>10091 <a xmlns="http://www.w3.org/1999/xhtml" id="id656526"></a> 10089 10092 <div class="header">Description:</div> 10090 10093 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10113 10116 <div> 10114 10117 <div class="refsect1" lang="en" xml:lang="en"> 10115 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82447"></a>10118 <a xmlns="http://www.w3.org/1999/xhtml" id="id656583"></a> 10116 10119 <div class="header">Description:</div> 10117 10120 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10138 10141 <div> 10139 10142 <div class="refsect1" lang="en" xml:lang="en"> 10140 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82503"></a>10143 <a xmlns="http://www.w3.org/1999/xhtml" id="id656639"></a> 10141 10144 <div class="header">Description:</div> 10142 10145 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10161 10164 <div> 10162 10165 <div class="refsect1" lang="en" xml:lang="en"> 10163 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82570"></a>10166 <a xmlns="http://www.w3.org/1999/xhtml" id="id656706"></a> 10164 10167 <div class="header">Description:</div> 10165 10168 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10185 10188 <div> 10186 10189 <div class="refsect1" lang="en" xml:lang="en"> 10187 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82626"></a>10190 <a xmlns="http://www.w3.org/1999/xhtml" id="id656762"></a> 10188 10191 <div class="header">Description:</div> 10189 10192 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10205 10208 <div> 10206 10209 <div class="refsect1" lang="en" xml:lang="en"> 10207 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82679"></a>10210 <a xmlns="http://www.w3.org/1999/xhtml" id="id656816"></a> 10208 10211 <div class="header">Description:</div> 10209 10212 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10241 10244 <div> 10242 10245 <div class="refsect1" lang="en" xml:lang="en"> 10243 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82747"></a>10246 <a xmlns="http://www.w3.org/1999/xhtml" id="id656883"></a> 10244 10247 <div class="header">Description:</div> 10245 10248 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10261 10264 <div> 10262 10265 <div class="refsect1" lang="en" xml:lang="en"> 10263 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82801"></a>10266 <a xmlns="http://www.w3.org/1999/xhtml" id="id656938"></a> 10264 10267 <div class="header">Description:</div> 10265 10268 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10287 10290 <div> 10288 10291 <div class="refsect1" lang="en" xml:lang="en"> 10289 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82858"></a>10292 <a xmlns="http://www.w3.org/1999/xhtml" id="id656995"></a> 10290 10293 <div class="header">Description:</div> 10291 10294 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10307 10310 <div> 10308 10311 <div class="refsect1" lang="en" xml:lang="en"> 10309 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82912"></a>10312 <a xmlns="http://www.w3.org/1999/xhtml" id="id657048"></a> 10310 10313 <div class="header">Description:</div> 10311 10314 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10333 10336 <div> 10334 10337 <div class="refsect1" lang="en" xml:lang="en"> 10335 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 82972"></a>10338 <a xmlns="http://www.w3.org/1999/xhtml" id="id657109"></a> 10336 10339 <div class="header">Description:</div> 10337 10340 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10356 10359 <div> 10357 10360 <div class="refsect1" lang="en" xml:lang="en"> 10358 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83028"></a>10361 <a xmlns="http://www.w3.org/1999/xhtml" id="id657164"></a> 10359 10362 <div class="header">Description:</div> 10360 10363 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10380 10383 <div> 10381 10384 <div class="refsect1" lang="en" xml:lang="en"> 10382 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83083"></a>10385 <a xmlns="http://www.w3.org/1999/xhtml" id="id657220"></a> 10383 10386 <div class="header">Description:</div> 10384 10387 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10403 10406 <div> 10404 10407 <div class="refsect1" lang="en" xml:lang="en"> 10405 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83150"></a>10408 <a xmlns="http://www.w3.org/1999/xhtml" id="id657286"></a> 10406 10409 <div class="header">Description:</div> 10407 10410 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10427 10430 <div> 10428 10431 <div class="refsect1" lang="en" xml:lang="en"> 10429 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83212"></a>10432 <a xmlns="http://www.w3.org/1999/xhtml" id="id657348"></a> 10430 10433 <div class="header">Description:</div> 10431 10434 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10450 10453 <div> 10451 10454 <div class="refsect1" lang="en" xml:lang="en"> 10452 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83267"></a>10455 <a xmlns="http://www.w3.org/1999/xhtml" id="id657403"></a> 10453 10456 <div class="header">Description:</div> 10454 10457 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10470 10473 <div> 10471 10474 <div class="refsect1" lang="en" xml:lang="en"> 10472 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83321"></a>10475 <a xmlns="http://www.w3.org/1999/xhtml" id="id657458"></a> 10473 10476 <div class="header">Description:</div> 10474 10477 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10564 10567 <div> 10565 10568 <div class="refsect1" lang="en" xml:lang="en"> 10566 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83473"></a>10569 <a xmlns="http://www.w3.org/1999/xhtml" id="id657609"></a> 10567 10570 <div class="header">Description:</div> 10568 10571 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10591 10594 <div> 10592 10595 <div class="refsect1" lang="en" xml:lang="en"> 10593 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83530"></a>10596 <a xmlns="http://www.w3.org/1999/xhtml" id="id657666"></a> 10594 10597 <div class="header">Description:</div> 10595 10598 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10615 10618 <div> 10616 10619 <div class="refsect1" lang="en" xml:lang="en"> 10617 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83586"></a>10620 <a xmlns="http://www.w3.org/1999/xhtml" id="id657722"></a> 10618 10621 <div class="header">Description:</div> 10619 10622 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10638 10641 <div> 10639 10642 <div class="refsect1" lang="en" xml:lang="en"> 10640 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83641"></a>10643 <a xmlns="http://www.w3.org/1999/xhtml" id="id657777"></a> 10641 10644 <div class="header">Description:</div> 10642 10645 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10661 10664 <div> 10662 10665 <div class="refsect1" lang="en" xml:lang="en"> 10663 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83696"></a>10666 <a xmlns="http://www.w3.org/1999/xhtml" id="id657832"></a> 10664 10667 <div class="header">Description:</div> 10665 10668 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10687 10690 <div> 10688 10691 <div class="refsect1" lang="en" xml:lang="en"> 10689 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83753"></a>10692 <a xmlns="http://www.w3.org/1999/xhtml" id="id657889"></a> 10690 10693 <div class="header">Description:</div> 10691 10694 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10713 10716 <div> 10714 10717 <div class="refsect1" lang="en" xml:lang="en"> 10715 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83810"></a>10718 <a xmlns="http://www.w3.org/1999/xhtml" id="id657946"></a> 10716 10719 <div class="header">Description:</div> 10717 10720 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10742 10745 <div> 10743 10746 <div class="refsect1" lang="en" xml:lang="en"> 10744 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83870"></a>10747 <a xmlns="http://www.w3.org/1999/xhtml" id="id658006"></a> 10745 10748 <div class="header">Description:</div> 10746 10749 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10765 10768 <div> 10766 10769 <div class="refsect1" lang="en" xml:lang="en"> 10767 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 83926"></a>10770 <a xmlns="http://www.w3.org/1999/xhtml" id="id658062"></a> 10768 10771 <div class="header">Description:</div> 10769 10772 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10815 10818 <div> 10816 10819 <div class="refsect1" lang="en" xml:lang="en"> 10817 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84013"></a>10820 <a xmlns="http://www.w3.org/1999/xhtml" id="id658149"></a> 10818 10821 <div class="header">Description:</div> 10819 10822 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10835 10838 <div> 10836 10839 <div class="refsect1" lang="en" xml:lang="en"> 10837 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84067"></a>10840 <a xmlns="http://www.w3.org/1999/xhtml" id="id658203"></a> 10838 10841 <div class="header">Description:</div> 10839 10842 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 10855 10858 <div> 10856 10859 <div class="refsect1" lang="en" xml:lang="en"> 10857 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84121"></a>10860 <a xmlns="http://www.w3.org/1999/xhtml" id="id658258"></a> 10858 10861 <div class="header">Description:</div> 10859 10862 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10880 10883 <div> 10881 10884 <div class="refsect1" lang="en" xml:lang="en"> 10882 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84185"></a>10885 <a xmlns="http://www.w3.org/1999/xhtml" id="id658321"></a> 10883 10886 <div class="header">Description:</div> 10884 10887 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10907 10910 <div> 10908 10911 <div class="refsect1" lang="en" xml:lang="en"> 10909 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84246"></a>10912 <a xmlns="http://www.w3.org/1999/xhtml" id="id658382"></a> 10910 10913 <div class="header">Description:</div> 10911 10914 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10933 10936 <div> 10934 10937 <div class="refsect1" lang="en" xml:lang="en"> 10935 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84303"></a>10938 <a xmlns="http://www.w3.org/1999/xhtml" id="id658439"></a> 10936 10939 <div class="header">Description:</div> 10937 10940 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10958 10961 <div> 10959 10962 <div class="refsect1" lang="en" xml:lang="en"> 10960 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84359"></a>10963 <a xmlns="http://www.w3.org/1999/xhtml" id="id658496"></a> 10961 10964 <div class="header">Description:</div> 10962 10965 <p xmlns="http://www.w3.org/1999/xhtml"> … … 10983 10986 <div> 10984 10987 <div class="refsect1" lang="en" xml:lang="en"> 10985 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84416"></a>10988 <a xmlns="http://www.w3.org/1999/xhtml" id="id658552"></a> 10986 10989 <div class="header">Description:</div> 10987 10990 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11042 11045 <div> 11043 11046 <div class="refsect1" lang="en" xml:lang="en"> 11044 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84528"></a>11047 <a xmlns="http://www.w3.org/1999/xhtml" id="id658664"></a> 11045 11048 <div class="header">Description:</div> 11046 11049 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11065 11068 <div> 11066 11069 <div class="refsect1" lang="en" xml:lang="en"> 11067 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84583"></a>11070 <a xmlns="http://www.w3.org/1999/xhtml" id="id658719"></a> 11068 11071 <div class="header">Description:</div> 11069 11072 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11092 11095 <div> 11093 11096 <div class="refsect1" lang="en" xml:lang="en"> 11094 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84646"></a>11097 <a xmlns="http://www.w3.org/1999/xhtml" id="id658782"></a> 11095 11098 <div class="header">Description:</div> 11096 11099 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11116 11119 <div> 11117 11120 <div class="refsect1" lang="en" xml:lang="en"> 11118 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84707"></a>11121 <a xmlns="http://www.w3.org/1999/xhtml" id="id658843"></a> 11119 11122 <div class="header">Description:</div> 11120 11123 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11136 11139 <div> 11137 11140 <div class="refsect1" lang="en" xml:lang="en"> 11138 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84761"></a>11141 <a xmlns="http://www.w3.org/1999/xhtml" id="id658897"></a> 11139 11142 <div class="header">Description:</div> 11140 11143 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11159 11162 <div> 11160 11163 <div class="refsect1" lang="en" xml:lang="en"> 11161 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84816"></a>11164 <a xmlns="http://www.w3.org/1999/xhtml" id="id658952"></a> 11162 11165 <div class="header">Description:</div> 11163 11166 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11188 11191 <div> 11189 11192 <div class="refsect1" lang="en" xml:lang="en"> 11190 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84877"></a>11193 <a xmlns="http://www.w3.org/1999/xhtml" id="id659013"></a> 11191 11194 <div class="header">Description:</div> 11192 11195 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11208 11211 <div> 11209 11212 <div class="refsect1" lang="en" xml:lang="en"> 11210 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84931"></a>11213 <a xmlns="http://www.w3.org/1999/xhtml" id="id659067"></a> 11211 11214 <div class="header">Description:</div> 11212 11215 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11228 11231 <div> 11229 11232 <div class="refsect1" lang="en" xml:lang="en"> 11230 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 84985"></a>11233 <a xmlns="http://www.w3.org/1999/xhtml" id="id659121"></a> 11231 11234 <div class="header">Description:</div> 11232 11235 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11248 11251 <div> 11249 11252 <div class="refsect1" lang="en" xml:lang="en"> 11250 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85040"></a>11253 <a xmlns="http://www.w3.org/1999/xhtml" id="id659176"></a> 11251 11254 <div class="header">Description:</div> 11252 11255 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11268 11271 <div> 11269 11272 <div class="refsect1" lang="en" xml:lang="en"> 11270 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85093"></a>11273 <a xmlns="http://www.w3.org/1999/xhtml" id="id659229"></a> 11271 11274 <div class="header">Description:</div> 11272 11275 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11288 11291 <div> 11289 11292 <div class="refsect1" lang="en" xml:lang="en"> 11290 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85148"></a>11293 <a xmlns="http://www.w3.org/1999/xhtml" id="id659284"></a> 11291 11294 <div class="header">Description:</div> 11292 11295 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11313 11316 <div> 11314 11317 <div class="refsect1" lang="en" xml:lang="en"> 11315 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85204"></a>11318 <a xmlns="http://www.w3.org/1999/xhtml" id="id659340"></a> 11316 11319 <div class="header">Description:</div> 11317 11320 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11333 11336 <div> 11334 11337 <div class="refsect1" lang="en" xml:lang="en"> 11335 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85259"></a>11338 <a xmlns="http://www.w3.org/1999/xhtml" id="id659395"></a> 11336 11339 <div class="header">Description:</div> 11337 11340 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11353 11356 <div> 11354 11357 <div class="refsect1" lang="en" xml:lang="en"> 11355 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85313"></a>11358 <a xmlns="http://www.w3.org/1999/xhtml" id="id659449"></a> 11356 11359 <div class="header">Description:</div> 11357 11360 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11373 11376 <div> 11374 11377 <div class="refsect1" lang="en" xml:lang="en"> 11375 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85367"></a>11378 <a xmlns="http://www.w3.org/1999/xhtml" id="id659503"></a> 11376 11379 <div class="header">Description:</div> 11377 11380 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11396 11399 <div> 11397 11400 <div class="refsect1" lang="en" xml:lang="en"> 11398 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85423"></a>11401 <a xmlns="http://www.w3.org/1999/xhtml" id="id659559"></a> 11399 11402 <div class="header">Description:</div> 11400 11403 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11419 11422 <div> 11420 11423 <div class="refsect1" lang="en" xml:lang="en"> 11421 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85478"></a>11424 <a xmlns="http://www.w3.org/1999/xhtml" id="id659614"></a> 11422 11425 <div class="header">Description:</div> 11423 11426 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11439 11442 <div> 11440 11443 <div class="refsect1" lang="en" xml:lang="en"> 11441 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85532"></a>11444 <a xmlns="http://www.w3.org/1999/xhtml" id="id659668"></a> 11442 11445 <div class="header">Description:</div> 11443 11446 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11479 11482 <div> 11480 11483 <div class="refsect1" lang="en" xml:lang="en"> 11481 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85624"></a>11484 <a xmlns="http://www.w3.org/1999/xhtml" id="id659760"></a> 11482 11485 <div class="header">Description:</div> 11483 11486 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11507 11510 <div> 11508 11511 <div class="refsect1" lang="en" xml:lang="en"> 11509 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85687"></a>11512 <a xmlns="http://www.w3.org/1999/xhtml" id="id659823"></a> 11510 11513 <div class="header">Description:</div> 11511 11514 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 11527 11530 <div> 11528 11531 <div class="refsect1" lang="en" xml:lang="en"> 11529 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85741"></a>11532 <a xmlns="http://www.w3.org/1999/xhtml" id="id659878"></a> 11530 11533 <div class="header">Description:</div> 11531 11534 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11635 11638 <div> 11636 11639 <div class="refsect1" lang="en" xml:lang="en"> 11637 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85894"></a>11640 <a xmlns="http://www.w3.org/1999/xhtml" id="id660030"></a> 11638 11641 <div class="header">Description:</div> 11639 11642 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11659 11662 <div> 11660 11663 <div class="refsect1" lang="en" xml:lang="en"> 11661 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 85951"></a>11664 <a xmlns="http://www.w3.org/1999/xhtml" id="id660087"></a> 11662 11665 <div class="header">Description:</div> 11663 11666 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11689 11692 <div> 11690 11693 <div class="refsect1" lang="en" xml:lang="en"> 11691 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86016"></a>11694 <a xmlns="http://www.w3.org/1999/xhtml" id="id660152"></a> 11692 11695 <div class="header">Description:</div> 11693 11696 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11711 11714 <div> 11712 11715 <div class="refsect1" lang="en" xml:lang="en"> 11713 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86070"></a>11716 <a xmlns="http://www.w3.org/1999/xhtml" id="id660206"></a> 11714 11717 <div class="header">Description:</div> 11715 11718 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11733 11736 <div> 11734 11737 <div class="refsect1" lang="en" xml:lang="en"> 11735 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86125"></a>11738 <a xmlns="http://www.w3.org/1999/xhtml" id="id660261"></a> 11736 11739 <div class="header">Description:</div> 11737 11740 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11756 11759 <div> 11757 11760 <div class="refsect1" lang="en" xml:lang="en"> 11758 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86180"></a>11761 <a xmlns="http://www.w3.org/1999/xhtml" id="id660316"></a> 11759 11762 <div class="header">Description:</div> 11760 11763 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11779 11782 <div> 11780 11783 <div class="refsect1" lang="en" xml:lang="en"> 11781 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86239"></a>11784 <a xmlns="http://www.w3.org/1999/xhtml" id="id660375"></a> 11782 11785 <div class="header">Description:</div> 11783 11786 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11824 11827 <div> 11825 11828 <div class="refsect1" lang="en" xml:lang="en"> 11826 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86324"></a>11829 <a xmlns="http://www.w3.org/1999/xhtml" id="id660460"></a> 11827 11830 <div class="header">Description:</div> 11828 11831 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11882 11885 <div> 11883 11886 <div class="refsect1" lang="en" xml:lang="en"> 11884 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86524"></a>11887 <a xmlns="http://www.w3.org/1999/xhtml" id="id660660"></a> 11885 11888 <div class="header">Description:</div> 11886 11889 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11904 11907 <div> 11905 11908 <div class="refsect1" lang="en" xml:lang="en"> 11906 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86579"></a>11909 <a xmlns="http://www.w3.org/1999/xhtml" id="id660715"></a> 11907 11910 <div class="header">Description:</div> 11908 11911 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11931 11934 <div> 11932 11935 <div class="refsect1" lang="en" xml:lang="en"> 11933 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86635"></a>11936 <a xmlns="http://www.w3.org/1999/xhtml" id="id660772"></a> 11934 11937 <div class="header">Description:</div> 11935 11938 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11953 11956 <div> 11954 11957 <div class="refsect1" lang="en" xml:lang="en"> 11955 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86690"></a>11958 <a xmlns="http://www.w3.org/1999/xhtml" id="id660826"></a> 11956 11959 <div class="header">Description:</div> 11957 11960 <p xmlns="http://www.w3.org/1999/xhtml"> … … 11978 11981 <div> 11979 11982 <div class="refsect1" lang="en" xml:lang="en"> 11980 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 86751"></a>11983 <a xmlns="http://www.w3.org/1999/xhtml" id="id660887"></a> 11981 11984 <div class="header">Description:</div> 11982 11985 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12152 12155 <div> 12153 12156 <div class="refsect1" lang="en" xml:lang="en"> 12154 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87062"></a>12157 <a xmlns="http://www.w3.org/1999/xhtml" id="id661198"></a> 12155 12158 <div class="header">Description:</div> 12156 12159 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12176 12179 <div> 12177 12180 <div class="refsect1" lang="en" xml:lang="en"> 12178 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87117"></a>12181 <a xmlns="http://www.w3.org/1999/xhtml" id="id661253"></a> 12179 12182 <div class="header">Description:</div> 12180 12183 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12213 12216 <div> 12214 12217 <div class="refsect1" lang="en" xml:lang="en"> 12215 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87192"></a>12218 <a xmlns="http://www.w3.org/1999/xhtml" id="id661328"></a> 12216 12219 <div class="header">Description:</div> 12217 12220 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12256 12259 <div> 12257 12260 <div class="refsect1" lang="en" xml:lang="en"> 12258 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87344"></a>12261 <a xmlns="http://www.w3.org/1999/xhtml" id="id661480"></a> 12259 12262 <div class="header">Description:</div> 12260 12263 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12295 12298 <div> 12296 12299 <div class="refsect1" lang="en" xml:lang="en"> 12297 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87477"></a>12300 <a xmlns="http://www.w3.org/1999/xhtml" id="id661613"></a> 12298 12301 <div class="header">Description:</div> 12299 12302 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 12315 12318 <div> 12316 12319 <div class="refsect1" lang="en" xml:lang="en"> 12317 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87535"></a>12320 <a xmlns="http://www.w3.org/1999/xhtml" id="id661671"></a> 12318 12321 <div class="header">Description:</div> 12319 12322 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 12335 12338 <div> 12336 12339 <div class="refsect1" lang="en" xml:lang="en"> 12337 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87593"></a>12340 <a xmlns="http://www.w3.org/1999/xhtml" id="id661729"></a> 12338 12341 <div class="header">Description:</div> 12339 12342 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12359 12362 <div> 12360 12363 <div class="refsect1" lang="en" xml:lang="en"> 12361 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87649"></a>12364 <a xmlns="http://www.w3.org/1999/xhtml" id="id661785"></a> 12362 12365 <div class="header">Description:</div> 12363 12366 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12382 12385 <div> 12383 12386 <div class="refsect1" lang="en" xml:lang="en"> 12384 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87704"></a>12387 <a xmlns="http://www.w3.org/1999/xhtml" id="id661840"></a> 12385 12388 <div class="header">Description:</div> 12386 12389 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 12402 12405 <div> 12403 12406 <div class="refsect1" lang="en" xml:lang="en"> 12404 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87758"></a>12407 <a xmlns="http://www.w3.org/1999/xhtml" id="id661894"></a> 12405 12408 <div class="header">Description:</div> 12406 12409 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12425 12428 <div> 12426 12429 <div class="refsect1" lang="en" xml:lang="en"> 12427 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87817"></a>12430 <a xmlns="http://www.w3.org/1999/xhtml" id="id661953"></a> 12428 12431 <div class="header">Description:</div> 12429 12432 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12451 12454 <div> 12452 12455 <div class="refsect1" lang="en" xml:lang="en"> 12453 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87877"></a>12456 <a xmlns="http://www.w3.org/1999/xhtml" id="id662013"></a> 12454 12457 <div class="header">Description:</div> 12455 12458 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12474 12477 <div> 12475 12478 <div class="refsect1" lang="en" xml:lang="en"> 12476 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87936"></a>12479 <a xmlns="http://www.w3.org/1999/xhtml" id="id662072"></a> 12477 12480 <div class="header">Description:</div> 12478 12481 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 12494 12497 <div> 12495 12498 <div class="refsect1" lang="en" xml:lang="en"> 12496 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 87990"></a>12499 <a xmlns="http://www.w3.org/1999/xhtml" id="id662126"></a> 12497 12500 <div class="header">Description:</div> 12498 12501 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12551 12554 <div> 12552 12555 <div class="refsect1" lang="en" xml:lang="en"> 12553 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88078"></a>12556 <a xmlns="http://www.w3.org/1999/xhtml" id="id662214"></a> 12554 12557 <div class="header">Description:</div> 12555 12558 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 12571 12574 <div> 12572 12575 <div class="refsect1" lang="en" xml:lang="en"> 12573 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88132"></a>12576 <a xmlns="http://www.w3.org/1999/xhtml" id="id662268"></a> 12574 12577 <div class="header">Description:</div> 12575 12578 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12603 12606 <div> 12604 12607 <div class="refsect1" lang="en" xml:lang="en"> 12605 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88198"></a>12608 <a xmlns="http://www.w3.org/1999/xhtml" id="id662334"></a> 12606 12609 <div class="header">Description:</div> 12607 12610 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12686 12689 <div> 12687 12690 <div class="refsect1" lang="en" xml:lang="en"> 12688 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88341"></a>12691 <a xmlns="http://www.w3.org/1999/xhtml" id="id662477"></a> 12689 12692 <div class="header">Description:</div> 12690 12693 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12710 12713 <div> 12711 12714 <div class="refsect1" lang="en" xml:lang="en"> 12712 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88408"></a>12715 <a xmlns="http://www.w3.org/1999/xhtml" id="id662544"></a> 12713 12716 <div class="header">Description:</div> 12714 12717 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12742 12745 <div> 12743 12746 <div class="refsect1" lang="en" xml:lang="en"> 12744 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88487"></a>12747 <a xmlns="http://www.w3.org/1999/xhtml" id="id662623"></a> 12745 12748 <div class="header">Description:</div> 12746 12749 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12771 12774 <div> 12772 12775 <div class="refsect1" lang="en" xml:lang="en"> 12773 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88559"></a>12776 <a xmlns="http://www.w3.org/1999/xhtml" id="id662695"></a> 12774 12777 <div class="header">Description:</div> 12775 12778 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12793 12796 <div> 12794 12797 <div class="refsect1" lang="en" xml:lang="en"> 12795 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88616"></a>12798 <a xmlns="http://www.w3.org/1999/xhtml" id="id662752"></a> 12796 12799 <div class="header">Description:</div> 12797 12800 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 12813 12816 <div> 12814 12817 <div class="refsect1" lang="en" xml:lang="en"> 12815 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88672"></a>12818 <a xmlns="http://www.w3.org/1999/xhtml" id="id662808"></a> 12816 12819 <div class="header">Description:</div> 12817 12820 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 12833 12836 <div> 12834 12837 <div class="refsect1" lang="en" xml:lang="en"> 12835 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88728"></a>12838 <a xmlns="http://www.w3.org/1999/xhtml" id="id662864"></a> 12836 12839 <div class="header">Description:</div> 12837 12840 <p xmlns="http://www.w3.org/1999/xhtml"> … … 12915 12918 <div> 12916 12919 <div class="refsect1" lang="en" xml:lang="en"> 12917 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 88842"></a>12920 <a xmlns="http://www.w3.org/1999/xhtml" id="id662979"></a> 12918 12921 <div class="header">Description:</div> 12919 12922 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13022 13025 <div> 13023 13026 <div class="refsect1" lang="en" xml:lang="en"> 13024 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89008"></a>13027 <a xmlns="http://www.w3.org/1999/xhtml" id="id663144"></a> 13025 13028 <div class="header">Description:</div> 13026 13029 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13067 13070 <div> 13068 13071 <div class="refsect1" lang="en" xml:lang="en"> 13069 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89143"></a>13072 <a xmlns="http://www.w3.org/1999/xhtml" id="id663279"></a> 13070 13073 <div class="header">Description:</div> 13071 13074 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13092 13095 <div> 13093 13096 <div class="refsect1" lang="en" xml:lang="en"> 13094 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89205"></a>13097 <a xmlns="http://www.w3.org/1999/xhtml" id="id663342"></a> 13095 13098 <div class="header">Description:</div> 13096 13099 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13124 13127 <div> 13125 13128 <div class="refsect1" lang="en" xml:lang="en"> 13126 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89283"></a>13129 <a xmlns="http://www.w3.org/1999/xhtml" id="id663419"></a> 13127 13130 <div class="header">Description:</div> 13128 13131 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13167 13170 <div> 13168 13171 <div class="refsect1" lang="en" xml:lang="en"> 13169 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89427"></a>13172 <a xmlns="http://www.w3.org/1999/xhtml" id="id663563"></a> 13170 13173 <div class="header">Description:</div> 13171 13174 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13228 13231 <div> 13229 13232 <div class="refsect1" lang="en" xml:lang="en"> 13230 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89520"></a>13233 <a xmlns="http://www.w3.org/1999/xhtml" id="id663657"></a> 13231 13234 <div class="header">Description:</div> 13232 13235 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13307 13310 <div> 13308 13311 <div class="refsect1" lang="en" xml:lang="en"> 13309 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89644"></a>13312 <a xmlns="http://www.w3.org/1999/xhtml" id="id663780"></a> 13310 13313 <div class="header">Description:</div> 13311 13314 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13366 13369 <div> 13367 13370 <div class="refsect1" lang="en" xml:lang="en"> 13368 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89736"></a>13371 <a xmlns="http://www.w3.org/1999/xhtml" id="id663872"></a> 13369 13372 <div class="header">Description:</div> 13370 13373 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13463 13466 <div> 13464 13467 <div class="refsect1" lang="en" xml:lang="en"> 13465 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89875"></a>13468 <a xmlns="http://www.w3.org/1999/xhtml" id="id664011"></a> 13466 13469 <div class="header">Description:</div> 13467 13470 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13486 13489 <div> 13487 13490 <div class="refsect1" lang="en" xml:lang="en"> 13488 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89929"></a>13491 <a xmlns="http://www.w3.org/1999/xhtml" id="id664066"></a> 13489 13492 <div class="header">Description:</div> 13490 13493 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13508 13511 <div> 13509 13512 <div class="refsect1" lang="en" xml:lang="en"> 13510 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 89984"></a>13513 <a xmlns="http://www.w3.org/1999/xhtml" id="id664120"></a> 13511 13514 <div class="header">Description:</div> 13512 13515 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13542 13545 <div> 13543 13546 <div class="refsect1" lang="en" xml:lang="en"> 13544 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90054"></a>13547 <a xmlns="http://www.w3.org/1999/xhtml" id="id664190"></a> 13545 13548 <div class="header">Description:</div> 13546 13549 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13590 13593 <div> 13591 13594 <div class="refsect1" lang="en" xml:lang="en"> 13592 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90139"></a>13595 <a xmlns="http://www.w3.org/1999/xhtml" id="id664275"></a> 13593 13596 <div class="header">Description:</div> 13594 13597 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13612 13615 <div> 13613 13616 <div class="refsect1" lang="en" xml:lang="en"> 13614 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90193"></a>13617 <a xmlns="http://www.w3.org/1999/xhtml" id="id664330"></a> 13615 13618 <div class="header">Description:</div> 13616 13619 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 13632 13635 <div> 13633 13636 <div class="refsect1" lang="en" xml:lang="en"> 13634 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90248"></a>13637 <a xmlns="http://www.w3.org/1999/xhtml" id="id664384"></a> 13635 13638 <div class="header">Description:</div> 13636 13639 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13656 13659 <div> 13657 13660 <div class="refsect1" lang="en" xml:lang="en"> 13658 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90303"></a>13661 <a xmlns="http://www.w3.org/1999/xhtml" id="id664440"></a> 13659 13662 <div class="header">Description:</div> 13660 13663 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 13676 13679 <div> 13677 13680 <div class="refsect1" lang="en" xml:lang="en"> 13678 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90358"></a>13681 <a xmlns="http://www.w3.org/1999/xhtml" id="id664494"></a> 13679 13682 <div class="header">Description:</div> 13680 13683 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13701 13704 <div> 13702 13705 <div class="refsect1" lang="en" xml:lang="en"> 13703 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90414"></a>13706 <a xmlns="http://www.w3.org/1999/xhtml" id="id664550"></a> 13704 13707 <div class="header">Description:</div> 13705 13708 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13723 13726 <div> 13724 13727 <div class="refsect1" lang="en" xml:lang="en"> 13725 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90468"></a>13728 <a xmlns="http://www.w3.org/1999/xhtml" id="id664604"></a> 13726 13729 <div class="header">Description:</div> 13727 13730 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13830 13833 <div> 13831 13834 <div class="refsect1" lang="en" xml:lang="en"> 13832 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90635"></a>13835 <a xmlns="http://www.w3.org/1999/xhtml" id="id664771"></a> 13833 13836 <div class="header">Description:</div> 13834 13837 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13862 13865 <div> 13863 13866 <div class="refsect1" lang="en" xml:lang="en"> 13864 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90711"></a>13867 <a xmlns="http://www.w3.org/1999/xhtml" id="id664847"></a> 13865 13868 <div class="header">Description:</div> 13866 13869 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13897 13900 <div> 13898 13901 <div class="refsect1" lang="en" xml:lang="en"> 13899 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90778"></a>13902 <a xmlns="http://www.w3.org/1999/xhtml" id="id664914"></a> 13900 13903 <div class="header">Description:</div> 13901 13904 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 13917 13920 <div> 13918 13921 <div class="refsect1" lang="en" xml:lang="en"> 13919 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90833"></a>13922 <a xmlns="http://www.w3.org/1999/xhtml" id="id664969"></a> 13920 13923 <div class="header">Description:</div> 13921 13924 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13939 13942 <div> 13940 13943 <div class="refsect1" lang="en" xml:lang="en"> 13941 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90888"></a>13944 <a xmlns="http://www.w3.org/1999/xhtml" id="id665024"></a> 13942 13945 <div class="header">Description:</div> 13943 13946 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 13959 13962 <div> 13960 13963 <div class="refsect1" lang="en" xml:lang="en"> 13961 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 90943"></a>13964 <a xmlns="http://www.w3.org/1999/xhtml" id="id665079"></a> 13962 13965 <div class="header">Description:</div> 13963 13966 <p xmlns="http://www.w3.org/1999/xhtml"> … … 13993 13996 <div> 13994 13997 <div class="refsect1" lang="en" xml:lang="en"> 13995 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91009"></a>13998 <a xmlns="http://www.w3.org/1999/xhtml" id="id665145"></a> 13996 13999 <div class="header">Description:</div> 13997 14000 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14016 14019 <div> 14017 14020 <div class="refsect1" lang="en" xml:lang="en"> 14018 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91065"></a>14021 <a xmlns="http://www.w3.org/1999/xhtml" id="id665201"></a> 14019 14022 <div class="header">Description:</div> 14020 14023 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 14036 14039 <div> 14037 14040 <div class="refsect1" lang="en" xml:lang="en"> 14038 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91119"></a>14041 <a xmlns="http://www.w3.org/1999/xhtml" id="id665255"></a> 14039 14042 <div class="header">Description:</div> 14040 14043 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14063 14066 <div> 14064 14067 <div class="refsect1" lang="en" xml:lang="en"> 14065 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91177"></a>14068 <a xmlns="http://www.w3.org/1999/xhtml" id="id665313"></a> 14066 14069 <div class="header">Description:</div> 14067 14070 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 14083 14086 <div> 14084 14087 <div class="refsect1" lang="en" xml:lang="en"> 14085 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91232"></a>14088 <a xmlns="http://www.w3.org/1999/xhtml" id="id665368"></a> 14086 14089 <div class="header">Description:</div> 14087 14090 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14107 14110 <div> 14108 14111 <div class="refsect1" lang="en" xml:lang="en"> 14109 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91290"></a>14112 <a xmlns="http://www.w3.org/1999/xhtml" id="id665426"></a> 14110 14113 <div class="header">Description:</div> 14111 14114 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 14127 14130 <div> 14128 14131 <div class="refsect1" lang="en" xml:lang="en"> 14129 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91349"></a>14132 <a xmlns="http://www.w3.org/1999/xhtml" id="id665485"></a> 14130 14133 <div class="header">Description:</div> 14131 14134 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14157 14160 <div> 14158 14161 <div class="refsect1" lang="en" xml:lang="en"> 14159 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91412"></a>14162 <a xmlns="http://www.w3.org/1999/xhtml" id="id665548"></a> 14160 14163 <div class="header">Description:</div> 14161 14164 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 14177 14180 <div> 14178 14181 <div class="refsect1" lang="en" xml:lang="en"> 14179 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91466"></a>14182 <a xmlns="http://www.w3.org/1999/xhtml" id="id665603"></a> 14180 14183 <div class="header">Description:</div> 14181 14184 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14221 14224 <div> 14222 14225 <div class="refsect1" lang="en" xml:lang="en"> 14223 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91546"></a>14226 <a xmlns="http://www.w3.org/1999/xhtml" id="id665682"></a> 14224 14227 <div class="header">Description:</div> 14225 14228 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14461 14464 <div> 14462 14465 <div class="refsect1" lang="en" xml:lang="en"> 14463 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 91949"></a>14466 <a xmlns="http://www.w3.org/1999/xhtml" id="id666085"></a> 14464 14467 <div class="header">Description:</div> 14465 14468 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14494 14497 <div> 14495 14498 <div class="refsect1" lang="en" xml:lang="en"> 14496 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92016"></a>14499 <a xmlns="http://www.w3.org/1999/xhtml" id="id666152"></a> 14497 14500 <div class="header">Description:</div> 14498 14501 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14516 14519 <div> 14517 14520 <div class="refsect1" lang="en" xml:lang="en"> 14518 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92071"></a>14521 <a xmlns="http://www.w3.org/1999/xhtml" id="id666207"></a> 14519 14522 <div class="header">Description:</div> 14520 14523 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14547 14550 <div> 14548 14551 <div class="refsect1" lang="en" xml:lang="en"> 14549 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92137"></a>14552 <a xmlns="http://www.w3.org/1999/xhtml" id="id666273"></a> 14550 14553 <div class="header">Description:</div> 14551 14554 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14571 14574 <div> 14572 14575 <div class="refsect1" lang="en" xml:lang="en"> 14573 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92196"></a>14576 <a xmlns="http://www.w3.org/1999/xhtml" id="id666332"></a> 14574 14577 <div class="header">Description:</div> 14575 14578 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14612 14615 <div> 14613 14616 <div class="refsect1" lang="en" xml:lang="en"> 14614 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92279"></a>14617 <a xmlns="http://www.w3.org/1999/xhtml" id="id666415"></a> 14615 14618 <div class="header">Description:</div> 14616 14619 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14699 14702 <div> 14700 14703 <div class="refsect1" lang="en" xml:lang="en"> 14701 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92527"></a>14704 <a xmlns="http://www.w3.org/1999/xhtml" id="id666663"></a> 14702 14705 <div class="header">Description:</div> 14703 14706 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14722 14725 <div> 14723 14726 <div class="refsect1" lang="en" xml:lang="en"> 14724 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92583"></a>14727 <a xmlns="http://www.w3.org/1999/xhtml" id="id666719"></a> 14725 14728 <div class="header">Description:</div> 14726 14729 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14750 14753 <div> 14751 14754 <div class="refsect1" lang="en" xml:lang="en"> 14752 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92644"></a>14755 <a xmlns="http://www.w3.org/1999/xhtml" id="id666780"></a> 14753 14756 <div class="header">Description:</div> 14754 14757 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14773 14776 <div> 14774 14777 <div class="refsect1" lang="en" xml:lang="en"> 14775 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92699"></a>14778 <a xmlns="http://www.w3.org/1999/xhtml" id="id666836"></a> 14776 14779 <div class="header">Description:</div> 14777 14780 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 14793 14796 <div> 14794 14797 <div class="refsect1" lang="en" xml:lang="en"> 14795 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92754"></a>14798 <a xmlns="http://www.w3.org/1999/xhtml" id="id666891"></a> 14796 14799 <div class="header">Description:</div> 14797 14800 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14816 14819 <div> 14817 14820 <div class="refsect1" lang="en" xml:lang="en"> 14818 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 92810"></a>14821 <a xmlns="http://www.w3.org/1999/xhtml" id="id666946"></a> 14819 14822 <div class="header">Description:</div> 14820 14823 <p xmlns="http://www.w3.org/1999/xhtml"> … … 14979 14982 <div> 14980 14983 <div class="refsect1" lang="en" xml:lang="en"> 14981 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93073"></a>14984 <a xmlns="http://www.w3.org/1999/xhtml" id="id667209"></a> 14982 14985 <div class="header">Description:</div> 14983 14986 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15001 15004 <div> 15002 15005 <div class="refsect1" lang="en" xml:lang="en"> 15003 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93131"></a>15006 <a xmlns="http://www.w3.org/1999/xhtml" id="id667267"></a> 15004 15007 <div class="header">Description:</div> 15005 15008 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 15021 15024 <div> 15022 15025 <div class="refsect1" lang="en" xml:lang="en"> 15023 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93189"></a>15026 <a xmlns="http://www.w3.org/1999/xhtml" id="id667325"></a> 15024 15027 <div class="header">Description:</div> 15025 15028 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15044 15047 <div> 15045 15048 <div class="refsect1" lang="en" xml:lang="en"> 15046 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93244"></a>15049 <a xmlns="http://www.w3.org/1999/xhtml" id="id667380"></a> 15047 15050 <div class="header">Description:</div> 15048 15051 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15148 15151 <div> 15149 15152 <div class="refsect1" lang="en" xml:lang="en"> 15150 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93420"></a>15153 <a xmlns="http://www.w3.org/1999/xhtml" id="id667556"></a> 15151 15154 <div class="header">Description:</div> 15152 15155 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15176 15179 <div> 15177 15180 <div class="refsect1" lang="en" xml:lang="en"> 15178 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93482"></a>15181 <a xmlns="http://www.w3.org/1999/xhtml" id="id667618"></a> 15179 15182 <div class="header">Description:</div> 15180 15183 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15200 15203 <div> 15201 15204 <div class="refsect1" lang="en" xml:lang="en"> 15202 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93553"></a>15205 <a xmlns="http://www.w3.org/1999/xhtml" id="id667689"></a> 15203 15206 <div class="header">Description:</div> 15204 15207 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15226 15229 <div> 15227 15230 <div class="refsect1" lang="en" xml:lang="en"> 15228 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93620"></a>15231 <a xmlns="http://www.w3.org/1999/xhtml" id="id667756"></a> 15229 15232 <div class="header">Description:</div> 15230 15233 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15252 15255 <div> 15253 15256 <div class="refsect1" lang="en" xml:lang="en"> 15254 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93680"></a>15257 <a xmlns="http://www.w3.org/1999/xhtml" id="id667817"></a> 15255 15258 <div class="header">Description:</div> 15256 15259 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15276 15279 <div> 15277 15280 <div class="refsect1" lang="en" xml:lang="en"> 15278 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93740"></a>15281 <a xmlns="http://www.w3.org/1999/xhtml" id="id667876"></a> 15279 15282 <div class="header">Description:</div> 15280 15283 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15310 15313 <div> 15311 15314 <div class="refsect1" lang="en" xml:lang="en"> 15312 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93807"></a>15315 <a xmlns="http://www.w3.org/1999/xhtml" id="id667943"></a> 15313 15316 <div class="header">Description:</div> 15314 15317 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15333 15336 <div> 15334 15337 <div class="refsect1" lang="en" xml:lang="en"> 15335 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93866"></a>15338 <a xmlns="http://www.w3.org/1999/xhtml" id="id668002"></a> 15336 15339 <div class="header">Description:</div> 15337 15340 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15355 15358 <div> 15356 15359 <div class="refsect1" lang="en" xml:lang="en"> 15357 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93925"></a>15360 <a xmlns="http://www.w3.org/1999/xhtml" id="id668061"></a> 15358 15361 <div class="header">Description:</div> 15359 15362 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15380 15383 <div> 15381 15384 <div class="refsect1" lang="en" xml:lang="en"> 15382 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 93986"></a>15385 <a xmlns="http://www.w3.org/1999/xhtml" id="id668122"></a> 15383 15386 <div class="header">Description:</div> 15384 15387 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15407 15410 <div> 15408 15411 <div class="refsect1" lang="en" xml:lang="en"> 15409 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94047"></a>15412 <a xmlns="http://www.w3.org/1999/xhtml" id="id668183"></a> 15410 15413 <div class="header">Description:</div> 15411 15414 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15431 15434 <div> 15432 15435 <div class="refsect1" lang="en" xml:lang="en"> 15433 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94103"></a>15436 <a xmlns="http://www.w3.org/1999/xhtml" id="id668239"></a> 15434 15437 <div class="header">Description:</div> 15435 15438 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15535 15538 <div> 15536 15539 <div class="refsect1" lang="en" xml:lang="en"> 15537 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94275"></a>15540 <a xmlns="http://www.w3.org/1999/xhtml" id="id668411"></a> 15538 15541 <div class="header">Description:</div> 15539 15542 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15573 15576 <div> 15574 15577 <div class="refsect1" lang="en" xml:lang="en"> 15575 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94351"></a>15578 <a xmlns="http://www.w3.org/1999/xhtml" id="id668487"></a> 15576 15579 <div class="header">Description:</div> 15577 15580 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15648 15651 <div> 15649 15652 <div class="refsect1" lang="en" xml:lang="en"> 15650 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94579"></a>15653 <a xmlns="http://www.w3.org/1999/xhtml" id="id668716"></a> 15651 15654 <div class="header">Description:</div> 15652 15655 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15670 15673 <div> 15671 15674 <div class="refsect1" lang="en" xml:lang="en"> 15672 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94634"></a>15675 <a xmlns="http://www.w3.org/1999/xhtml" id="id668771"></a> 15673 15676 <div class="header">Description:</div> 15674 15677 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15693 15696 <div> 15694 15697 <div class="refsect1" lang="en" xml:lang="en"> 15695 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94690"></a>15698 <a xmlns="http://www.w3.org/1999/xhtml" id="id668826"></a> 15696 15699 <div class="header">Description:</div> 15697 15700 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15719 15722 <div> 15720 15723 <div class="refsect1" lang="en" xml:lang="en"> 15721 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94750"></a>15724 <a xmlns="http://www.w3.org/1999/xhtml" id="id668887"></a> 15722 15725 <div class="header">Description:</div> 15723 15726 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15790 15793 <div> 15791 15794 <div class="refsect1" lang="en" xml:lang="en"> 15792 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94854"></a>15795 <a xmlns="http://www.w3.org/1999/xhtml" id="id668991"></a> 15793 15796 <div class="header">Description:</div> 15794 15797 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15814 15817 <div> 15815 15818 <div class="refsect1" lang="en" xml:lang="en"> 15816 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94911"></a>15819 <a xmlns="http://www.w3.org/1999/xhtml" id="id669047"></a> 15817 15820 <div class="header">Description:</div> 15818 15821 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15839 15842 <div> 15840 15843 <div class="refsect1" lang="en" xml:lang="en"> 15841 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 94971"></a>15844 <a xmlns="http://www.w3.org/1999/xhtml" id="id669107"></a> 15842 15845 <div class="header">Description:</div> 15843 15846 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15881 15884 <div> 15882 15885 <div class="refsect1" lang="en" xml:lang="en"> 15883 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95045"></a>15886 <a xmlns="http://www.w3.org/1999/xhtml" id="id669182"></a> 15884 15887 <div class="header">Description:</div> 15885 15888 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15903 15906 <div> 15904 15907 <div class="refsect1" lang="en" xml:lang="en"> 15905 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95101"></a>15908 <a xmlns="http://www.w3.org/1999/xhtml" id="id669237"></a> 15906 15909 <div class="header">Description:</div> 15907 15910 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 15923 15926 <div> 15924 15927 <div class="refsect1" lang="en" xml:lang="en"> 15925 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95156"></a>15928 <a xmlns="http://www.w3.org/1999/xhtml" id="id669292"></a> 15926 15929 <div class="header">Description:</div> 15927 15930 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 15943 15946 <div> 15944 15947 <div class="refsect1" lang="en" xml:lang="en"> 15945 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95211"></a>15948 <a xmlns="http://www.w3.org/1999/xhtml" id="id669347"></a> 15946 15949 <div class="header">Description:</div> 15947 15950 <p xmlns="http://www.w3.org/1999/xhtml"> … … 15967 15970 <div> 15968 15971 <div class="refsect1" lang="en" xml:lang="en"> 15969 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95268"></a>15972 <a xmlns="http://www.w3.org/1999/xhtml" id="id669404"></a> 15970 15973 <div class="header">Description:</div> 15971 15974 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16019 16022 <div> 16020 16023 <div class="refsect1" lang="en" xml:lang="en"> 16021 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95356"></a>16024 <a xmlns="http://www.w3.org/1999/xhtml" id="id669492"></a> 16022 16025 <div class="header">Description:</div> 16023 16026 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16041 16044 <div> 16042 16045 <div class="refsect1" lang="en" xml:lang="en"> 16043 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95414"></a>16046 <a xmlns="http://www.w3.org/1999/xhtml" id="id669551"></a> 16044 16047 <div class="header">Description:</div> 16045 16048 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 16061 16064 <div> 16062 16065 <div class="refsect1" lang="en" xml:lang="en"> 16063 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95469"></a>16066 <a xmlns="http://www.w3.org/1999/xhtml" id="id669605"></a> 16064 16067 <div class="header">Description:</div> 16065 16068 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16094 16097 <div> 16095 16098 <div class="refsect1" lang="en" xml:lang="en"> 16096 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95535"></a>16099 <a xmlns="http://www.w3.org/1999/xhtml" id="id669671"></a> 16097 16100 <div class="header">Description:</div> 16098 16101 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 16114 16117 <div> 16115 16118 <div class="refsect1" lang="en" xml:lang="en"> 16116 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95589"></a>16119 <a xmlns="http://www.w3.org/1999/xhtml" id="id669725"></a> 16117 16120 <div class="header">Description:</div> 16118 16121 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 16134 16137 <div> 16135 16138 <div class="refsect1" lang="en" xml:lang="en"> 16136 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95644"></a>16139 <a xmlns="http://www.w3.org/1999/xhtml" id="id669781"></a> 16137 16140 <div class="header">Description:</div> 16138 16141 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16219 16222 <div> 16220 16223 <div class="refsect1" lang="en" xml:lang="en"> 16221 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95779"></a>16224 <a xmlns="http://www.w3.org/1999/xhtml" id="id669915"></a> 16222 16225 <div class="header">Description:</div> 16223 16226 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 16239 16242 <div> 16240 16243 <div class="refsect1" lang="en" xml:lang="en"> 16241 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 95833"></a>16244 <a xmlns="http://www.w3.org/1999/xhtml" id="id669970"></a> 16242 16245 <div class="header">Description:</div> 16243 16246 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16355 16358 <div> 16356 16359 <div class="refsect1" lang="en" xml:lang="en"> 16357 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96010"></a>16360 <a xmlns="http://www.w3.org/1999/xhtml" id="id670147"></a> 16358 16361 <div class="header">Description:</div> 16359 16362 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16401 16404 <div> 16402 16405 <div class="refsect1" lang="en" xml:lang="en"> 16403 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96089"></a>16406 <a xmlns="http://www.w3.org/1999/xhtml" id="id670225"></a> 16404 16407 <div class="header">Description:</div> 16405 16408 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16424 16427 <div> 16425 16428 <div class="refsect1" lang="en" xml:lang="en"> 16426 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96149"></a>16429 <a xmlns="http://www.w3.org/1999/xhtml" id="id670286"></a> 16427 16430 <div class="header">Description:</div> 16428 16431 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16446 16449 <div> 16447 16450 <div class="refsect1" lang="en" xml:lang="en"> 16448 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96204"></a>16451 <a xmlns="http://www.w3.org/1999/xhtml" id="id670340"></a> 16449 16452 <div class="header">Description:</div> 16450 16453 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16487 16490 <div> 16488 16491 <div class="refsect1" lang="en" xml:lang="en"> 16489 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96290"></a>16492 <a xmlns="http://www.w3.org/1999/xhtml" id="id670426"></a> 16490 16493 <div class="header">Description:</div> 16491 16494 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16523 16526 <div> 16524 16527 <div class="refsect1" lang="en" xml:lang="en"> 16525 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96400"></a>16528 <a xmlns="http://www.w3.org/1999/xhtml" id="id670536"></a> 16526 16529 <div class="header">Description:</div> 16527 16530 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16545 16548 <div> 16546 16549 <div class="refsect1" lang="en" xml:lang="en"> 16547 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96456"></a>16550 <a xmlns="http://www.w3.org/1999/xhtml" id="id670592"></a> 16548 16551 <div class="header">Description:</div> 16549 16552 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16568 16571 <div> 16569 16572 <div class="refsect1" lang="en" xml:lang="en"> 16570 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96512"></a>16573 <a xmlns="http://www.w3.org/1999/xhtml" id="id670648"></a> 16571 16574 <div class="header">Description:</div> 16572 16575 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16590 16593 <div> 16591 16594 <div class="refsect1" lang="en" xml:lang="en"> 16592 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96567"></a>16595 <a xmlns="http://www.w3.org/1999/xhtml" id="id670703"></a> 16593 16596 <div class="header">Description:</div> 16594 16597 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16612 16615 <div> 16613 16616 <div class="refsect1" lang="en" xml:lang="en"> 16614 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96623"></a>16617 <a xmlns="http://www.w3.org/1999/xhtml" id="id670759"></a> 16615 16618 <div class="header">Description:</div> 16616 16619 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16636 16639 <div> 16637 16640 <div class="refsect1" lang="en" xml:lang="en"> 16638 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96682"></a>16641 <a xmlns="http://www.w3.org/1999/xhtml" id="id670818"></a> 16639 16642 <div class="header">Description:</div> 16640 16643 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16687 16690 <div> 16688 16691 <div class="refsect1" lang="en" xml:lang="en"> 16689 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96771"></a>16692 <a xmlns="http://www.w3.org/1999/xhtml" id="id670907"></a> 16690 16693 <div class="header">Description:</div> 16691 16694 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16714 16717 <div> 16715 16718 <div class="refsect1" lang="en" xml:lang="en"> 16716 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96829"></a>16719 <a xmlns="http://www.w3.org/1999/xhtml" id="id670965"></a> 16717 16720 <div class="header">Description:</div> 16718 16721 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16758 16761 <div> 16759 16762 <div class="refsect1" lang="en" xml:lang="en"> 16760 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96904"></a>16763 <a xmlns="http://www.w3.org/1999/xhtml" id="id671040"></a> 16761 16764 <div class="header">Description:</div> 16762 16765 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16805 16808 <div> 16806 16809 <div class="refsect1" lang="en" xml:lang="en"> 16807 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 96990"></a>16810 <a xmlns="http://www.w3.org/1999/xhtml" id="id671127"></a> 16808 16811 <div class="header">Description:</div> 16809 16812 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16829 16832 <div> 16830 16833 <div class="refsect1" lang="en" xml:lang="en"> 16831 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97047"></a>16834 <a xmlns="http://www.w3.org/1999/xhtml" id="id671183"></a> 16832 16835 <div class="header">Description:</div> 16833 16836 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16880 16883 <div> 16881 16884 <div class="refsect1" lang="en" xml:lang="en"> 16882 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97133"></a>16885 <a xmlns="http://www.w3.org/1999/xhtml" id="id671269"></a> 16883 16886 <div class="header">Description:</div> 16884 16887 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16909 16912 <div> 16910 16913 <div class="refsect1" lang="en" xml:lang="en"> 16911 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97192"></a>16914 <a xmlns="http://www.w3.org/1999/xhtml" id="id671328"></a> 16912 16915 <div class="header">Description:</div> 16913 16916 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 16929 16932 <div> 16930 16933 <div class="refsect1" lang="en" xml:lang="en"> 16931 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97246"></a>16934 <a xmlns="http://www.w3.org/1999/xhtml" id="id671382"></a> 16932 16935 <div class="header">Description:</div> 16933 16936 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16953 16956 <div> 16954 16957 <div class="refsect1" lang="en" xml:lang="en"> 16955 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97302"></a>16958 <a xmlns="http://www.w3.org/1999/xhtml" id="id671438"></a> 16956 16959 <div class="header">Description:</div> 16957 16960 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 16973 16976 <div> 16974 16977 <div class="refsect1" lang="en" xml:lang="en"> 16975 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97357"></a>16978 <a xmlns="http://www.w3.org/1999/xhtml" id="id671493"></a> 16976 16979 <div class="header">Description:</div> 16977 16980 <p xmlns="http://www.w3.org/1999/xhtml"> … … 16997 17000 <div> 16998 17001 <div class="refsect1" lang="en" xml:lang="en"> 16999 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97413"></a>17002 <a xmlns="http://www.w3.org/1999/xhtml" id="id671550"></a> 17000 17003 <div class="header">Description:</div> 17001 17004 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17043 17046 <div> 17044 17047 <div class="refsect1" lang="en" xml:lang="en"> 17045 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97499"></a>17048 <a xmlns="http://www.w3.org/1999/xhtml" id="id671636"></a> 17046 17049 <div class="header">Description:</div> 17047 17050 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17063 17066 <div> 17064 17067 <div class="refsect1" lang="en" xml:lang="en"> 17065 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97554"></a>17068 <a xmlns="http://www.w3.org/1999/xhtml" id="id671690"></a> 17066 17069 <div class="header">Description:</div> 17067 17070 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17083 17086 <div> 17084 17087 <div class="refsect1" lang="en" xml:lang="en"> 17085 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97608"></a>17088 <a xmlns="http://www.w3.org/1999/xhtml" id="id671744"></a> 17086 17089 <div class="header">Description:</div> 17087 17090 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17103 17106 <div> 17104 17107 <div class="refsect1" lang="en" xml:lang="en"> 17105 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97663"></a>17108 <a xmlns="http://www.w3.org/1999/xhtml" id="id671799"></a> 17106 17109 <div class="header">Description:</div> 17107 17110 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17123 17126 <div> 17124 17127 <div class="refsect1" lang="en" xml:lang="en"> 17125 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97717"></a>17128 <a xmlns="http://www.w3.org/1999/xhtml" id="id671853"></a> 17126 17129 <div class="header">Description:</div> 17127 17130 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17143 17146 <div> 17144 17147 <div class="refsect1" lang="en" xml:lang="en"> 17145 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97772"></a>17148 <a xmlns="http://www.w3.org/1999/xhtml" id="id671908"></a> 17146 17149 <div class="header">Description:</div> 17147 17150 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17180 17183 <div> 17181 17184 <div class="refsect1" lang="en" xml:lang="en"> 17182 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97837"></a>17185 <a xmlns="http://www.w3.org/1999/xhtml" id="id671973"></a> 17183 17186 <div class="header">Description:</div> 17184 17187 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17205 17208 <div> 17206 17209 <div class="refsect1" lang="en" xml:lang="en"> 17207 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97893"></a>17210 <a xmlns="http://www.w3.org/1999/xhtml" id="id672030"></a> 17208 17211 <div class="header">Description:</div> 17209 17212 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17230 17233 <div> 17231 17234 <div class="refsect1" lang="en" xml:lang="en"> 17232 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 97949"></a>17235 <a xmlns="http://www.w3.org/1999/xhtml" id="id672086"></a> 17233 17236 <div class="header">Description:</div> 17234 17237 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17258 17261 <div> 17259 17262 <div class="refsect1" lang="en" xml:lang="en"> 17260 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98007"></a>17263 <a xmlns="http://www.w3.org/1999/xhtml" id="id672144"></a> 17261 17264 <div class="header">Description:</div> 17262 17265 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17283 17286 <div> 17284 17287 <div class="refsect1" lang="en" xml:lang="en"> 17285 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98064"></a>17288 <a xmlns="http://www.w3.org/1999/xhtml" id="id672200"></a> 17286 17289 <div class="header">Description:</div> 17287 17290 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17303 17306 <div> 17304 17307 <div class="refsect1" lang="en" xml:lang="en"> 17305 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98118"></a>17308 <a xmlns="http://www.w3.org/1999/xhtml" id="id672254"></a> 17306 17309 <div class="header">Description:</div> 17307 17310 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17328 17331 <div> 17329 17332 <div class="refsect1" lang="en" xml:lang="en"> 17330 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98180"></a>17333 <a xmlns="http://www.w3.org/1999/xhtml" id="id672316"></a> 17331 17334 <div class="header">Description:</div> 17332 17335 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17348 17351 <div> 17349 17352 <div class="refsect1" lang="en" xml:lang="en"> 17350 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98235"></a>17353 <a xmlns="http://www.w3.org/1999/xhtml" id="id672371"></a> 17351 17354 <div class="header">Description:</div> 17352 17355 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17373 17376 <div> 17374 17377 <div class="refsect1" lang="en" xml:lang="en"> 17375 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98297"></a>17378 <a xmlns="http://www.w3.org/1999/xhtml" id="id672433"></a> 17376 17379 <div class="header">Description:</div> 17377 17380 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17398 17401 <div> 17399 17402 <div class="refsect1" lang="en" xml:lang="en"> 17400 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98353"></a>17403 <a xmlns="http://www.w3.org/1999/xhtml" id="id672489"></a> 17401 17404 <div class="header">Description:</div> 17402 17405 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17440 17443 <div> 17441 17444 <div class="refsect1" lang="en" xml:lang="en"> 17442 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98432"></a>17445 <a xmlns="http://www.w3.org/1999/xhtml" id="id672569"></a> 17443 17446 <div class="header">Description:</div> 17444 17447 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17467 17470 <div> 17468 17471 <div class="refsect1" lang="en" xml:lang="en"> 17469 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98496"></a>17472 <a xmlns="http://www.w3.org/1999/xhtml" id="id672632"></a> 17470 17473 <div class="header">Description:</div> 17471 17474 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17497 17500 <div> 17498 17501 <div class="refsect1" lang="en" xml:lang="en"> 17499 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98563"></a>17502 <a xmlns="http://www.w3.org/1999/xhtml" id="id672700"></a> 17500 17503 <div class="header">Description:</div> 17501 17504 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17517 17520 <div> 17518 17521 <div class="refsect1" lang="en" xml:lang="en"> 17519 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98619"></a>17522 <a xmlns="http://www.w3.org/1999/xhtml" id="id672755"></a> 17520 17523 <div class="header">Description:</div> 17521 17524 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17588 17591 <div> 17589 17592 <div class="refsect1" lang="en" xml:lang="en"> 17590 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98717"></a>17593 <a xmlns="http://www.w3.org/1999/xhtml" id="id672853"></a> 17591 17594 <div class="header">Description:</div> 17592 17595 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17647 17650 <div> 17648 17651 <div class="refsect1" lang="en" xml:lang="en"> 17649 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98815"></a>17652 <a xmlns="http://www.w3.org/1999/xhtml" id="id672951"></a> 17650 17653 <div class="header">Description:</div> 17651 17654 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17667 17670 <div> 17668 17671 <div class="refsect1" lang="en" xml:lang="en"> 17669 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98869"></a>17672 <a xmlns="http://www.w3.org/1999/xhtml" id="id673006"></a> 17670 17673 <div class="header">Description:</div> 17671 17674 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17691 17694 <div> 17692 17695 <div class="refsect1" lang="en" xml:lang="en"> 17693 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98929"></a>17696 <a xmlns="http://www.w3.org/1999/xhtml" id="id673065"></a> 17694 17697 <div class="header">Description:</div> 17695 17698 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17715 17718 <div> 17716 17719 <div class="refsect1" lang="en" xml:lang="en"> 17717 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 98988"></a>17720 <a xmlns="http://www.w3.org/1999/xhtml" id="id673124"></a> 17718 17721 <div class="header">Description:</div> 17719 17722 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17782 17785 <div> 17783 17786 <div class="refsect1" lang="en" xml:lang="en"> 17784 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99087"></a>17787 <a xmlns="http://www.w3.org/1999/xhtml" id="id673223"></a> 17785 17788 <div class="header">Description:</div> 17786 17789 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17814 17817 <div> 17815 17818 <div class="refsect1" lang="en" xml:lang="en"> 17816 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99150"></a>17819 <a xmlns="http://www.w3.org/1999/xhtml" id="id673286"></a> 17817 17820 <div class="header">Description:</div> 17818 17821 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17837 17840 <div> 17838 17841 <div class="refsect1" lang="en" xml:lang="en"> 17839 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99205"></a>17842 <a xmlns="http://www.w3.org/1999/xhtml" id="id673342"></a> 17840 17843 <div class="header">Description:</div> 17841 17844 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17860 17863 <div> 17861 17864 <div class="refsect1" lang="en" xml:lang="en"> 17862 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99260"></a>17865 <a xmlns="http://www.w3.org/1999/xhtml" id="id673397"></a> 17863 17866 <div class="header">Description:</div> 17864 17867 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 17880 17883 <div> 17881 17884 <div class="refsect1" lang="en" xml:lang="en"> 17882 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99315"></a>17885 <a xmlns="http://www.w3.org/1999/xhtml" id="id673451"></a> 17883 17886 <div class="header">Description:</div> 17884 17887 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17904 17907 <div> 17905 17908 <div class="refsect1" lang="en" xml:lang="en"> 17906 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99370"></a>17909 <a xmlns="http://www.w3.org/1999/xhtml" id="id673506"></a> 17907 17910 <div class="header">Description:</div> 17908 17911 <p xmlns="http://www.w3.org/1999/xhtml"> … … 17933 17936 <div> 17934 17937 <div class="refsect1" lang="en" xml:lang="en"> 17935 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99431"></a>17938 <a xmlns="http://www.w3.org/1999/xhtml" id="id673567"></a> 17936 17939 <div class="header">Description:</div> 17937 17940 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18022 18025 <div> 18023 18026 <div class="refsect1" lang="en" xml:lang="en"> 18024 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99620"></a>18027 <a xmlns="http://www.w3.org/1999/xhtml" id="id673756"></a> 18025 18028 <div class="header">Description:</div> 18026 18029 <p xmlns="http://www.w3.org/1999/xhtml"> </p> … … 18042 18045 <div> 18043 18046 <div class="refsect1" lang="en" xml:lang="en"> 18044 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99674"></a>18047 <a xmlns="http://www.w3.org/1999/xhtml" id="id673811"></a> 18045 18048 <div class="header">Description:</div> 18046 18049 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18072 18075 <div> 18073 18076 <div class="refsect1" lang="en" xml:lang="en"> 18074 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99736"></a>18077 <a xmlns="http://www.w3.org/1999/xhtml" id="id673873"></a> 18075 18078 <div class="header">Description:</div> 18076 18079 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18112 18115 <div> 18113 18116 <div class="refsect1" lang="en" xml:lang="en"> 18114 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99824"></a>18117 <a xmlns="http://www.w3.org/1999/xhtml" id="id673960"></a> 18115 18118 <div class="header">Description:</div> 18116 18119 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18136 18139 <div> 18137 18140 <div class="refsect1" lang="en" xml:lang="en"> 18138 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99880"></a>18141 <a xmlns="http://www.w3.org/1999/xhtml" id="id674016"></a> 18139 18142 <div class="header">Description:</div> 18140 18143 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18158 18161 <div> 18159 18162 <div class="refsect1" lang="en" xml:lang="en"> 18160 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99935"></a>18163 <a xmlns="http://www.w3.org/1999/xhtml" id="id674071"></a> 18161 18164 <div class="header">Description:</div> 18162 18165 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18181 18184 <div> 18182 18185 <div class="refsect1" lang="en" xml:lang="en"> 18183 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 99990"></a>18186 <a xmlns="http://www.w3.org/1999/xhtml" id="id674127"></a> 18184 18187 <div class="header">Description:</div> 18185 18188 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18204 18207 <div> 18205 18208 <div class="refsect1" lang="en" xml:lang="en"> 18206 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700046"></a>18209 <a xmlns="http://www.w3.org/1999/xhtml" id="id674182"></a> 18207 18210 <div class="header">Description:</div> 18208 18211 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18226 18229 <div> 18227 18230 <div class="refsect1" lang="en" xml:lang="en"> 18228 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700101"></a>18231 <a xmlns="http://www.w3.org/1999/xhtml" id="id674237"></a> 18229 18232 <div class="header">Description:</div> 18230 18233 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18249 18252 <div> 18250 18253 <div class="refsect1" lang="en" xml:lang="en"> 18251 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700156"></a>18254 <a xmlns="http://www.w3.org/1999/xhtml" id="id674292"></a> 18252 18255 <div class="header">Description:</div> 18253 18256 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18373 18376 <div> 18374 18377 <div class="refsect1" lang="en" xml:lang="en"> 18375 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700315"></a>18378 <a xmlns="http://www.w3.org/1999/xhtml" id="id674451"></a> 18376 18379 <div class="header">Description:</div> 18377 18380 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18406 18409 <div> 18407 18410 <div class="refsect1" lang="en" xml:lang="en"> 18408 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700379"></a>18411 <a xmlns="http://www.w3.org/1999/xhtml" id="id674516"></a> 18409 18412 <div class="header">Description:</div> 18410 18413 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18429 18432 <div> 18430 18433 <div class="refsect1" lang="en" xml:lang="en"> 18431 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700436"></a>18434 <a xmlns="http://www.w3.org/1999/xhtml" id="id674572"></a> 18432 18435 <div class="header">Description:</div> 18433 18436 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18454 18457 <div> 18455 18458 <div class="refsect1" lang="en" xml:lang="en"> 18456 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700493"></a>18459 <a xmlns="http://www.w3.org/1999/xhtml" id="id674629"></a> 18457 18460 <div class="header">Description:</div> 18458 18461 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18477 18480 <div> 18478 18481 <div class="refsect1" lang="en" xml:lang="en"> 18479 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700549"></a>18482 <a xmlns="http://www.w3.org/1999/xhtml" id="id674686"></a> 18480 18483 <div class="header">Description:</div> 18481 18484 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18500 18503 <div> 18501 18504 <div class="refsect1" lang="en" xml:lang="en"> 18502 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700606"></a>18505 <a xmlns="http://www.w3.org/1999/xhtml" id="id674742"></a> 18503 18506 <div class="header">Description:</div> 18504 18507 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18523 18526 <div> 18524 18527 <div class="refsect1" lang="en" xml:lang="en"> 18525 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700663"></a>18528 <a xmlns="http://www.w3.org/1999/xhtml" id="id674799"></a> 18526 18529 <div class="header">Description:</div> 18527 18530 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18586 18589 <div> 18587 18590 <div class="refsect1" lang="en" xml:lang="en"> 18588 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700778"></a>18591 <a xmlns="http://www.w3.org/1999/xhtml" id="id674914"></a> 18589 18592 <div class="header">Description:</div> 18590 18593 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18608 18611 <div> 18609 18612 <div class="refsect1" lang="en" xml:lang="en"> 18610 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700837"></a>18613 <a xmlns="http://www.w3.org/1999/xhtml" id="id674974"></a> 18611 18614 <div class="header">Description:</div> 18612 18615 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18632 18635 <div> 18633 18636 <div class="refsect1" lang="en" xml:lang="en"> 18634 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700894"></a>18637 <a xmlns="http://www.w3.org/1999/xhtml" id="id675031"></a> 18635 18638 <div class="header">Description:</div> 18636 18639 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18656 18659 <div> 18657 18660 <div class="refsect1" lang="en" xml:lang="en"> 18658 <a xmlns="http://www.w3.org/1999/xhtml" id="id 700952"></a>18661 <a xmlns="http://www.w3.org/1999/xhtml" id="id675088"></a> 18659 18662 <div class="header">Description:</div> 18660 18663 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18679 18682 <div> 18680 18683 <div class="refsect1" lang="en" xml:lang="en"> 18681 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701008"></a>18684 <a xmlns="http://www.w3.org/1999/xhtml" id="id675144"></a> 18682 18685 <div class="header">Description:</div> 18683 18686 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18704 18707 <div> 18705 18708 <div class="refsect1" lang="en" xml:lang="en"> 18706 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701065"></a>18709 <a xmlns="http://www.w3.org/1999/xhtml" id="id675202"></a> 18707 18710 <div class="header">Description:</div> 18708 18711 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18726 18729 <div> 18727 18730 <div class="refsect1" lang="en" xml:lang="en"> 18728 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701121"></a>18731 <a xmlns="http://www.w3.org/1999/xhtml" id="id675257"></a> 18729 18732 <div class="header">Description:</div> 18730 18733 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18748 18751 <div> 18749 18752 <div class="refsect1" lang="en" xml:lang="en"> 18750 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701177"></a>18753 <a xmlns="http://www.w3.org/1999/xhtml" id="id675313"></a> 18751 18754 <div class="header">Description:</div> 18752 18755 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18770 18773 <div> 18771 18774 <div class="refsect1" lang="en" xml:lang="en"> 18772 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701233"></a>18775 <a xmlns="http://www.w3.org/1999/xhtml" id="id675369"></a> 18773 18776 <div class="header">Description:</div> 18774 18777 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18793 18796 <div> 18794 18797 <div class="refsect1" lang="en" xml:lang="en"> 18795 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701289"></a>18798 <a xmlns="http://www.w3.org/1999/xhtml" id="id675426"></a> 18796 18799 <div class="header">Description:</div> 18797 18800 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18820 18823 <div> 18821 18824 <div class="refsect1" lang="en" xml:lang="en"> 18822 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701348"></a>18825 <a xmlns="http://www.w3.org/1999/xhtml" id="id675484"></a> 18823 18826 <div class="header">Description:</div> 18824 18827 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18843 18846 <div> 18844 18847 <div class="refsect1" lang="en" xml:lang="en"> 18845 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701408"></a>18848 <a xmlns="http://www.w3.org/1999/xhtml" id="id675545"></a> 18846 18849 <div class="header">Description:</div> 18847 18850 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18869 18872 <div> 18870 18873 <div class="refsect1" lang="en" xml:lang="en"> 18871 <a xmlns="http://www.w3.org/1999/xhtml" id="id 701470"></a>18874 <a xmlns="http://www.w3.org/1999/xhtml" id="id675606"></a> 18872 18875 <div class="header">Description:</div> 18873 18876 <p xmlns="http://www.w3.org/1999/xhtml"> … … 18917 18920 <dt> 18918 18921 <span class="sect2"> 18919 <a href="#id6 18987">7.3.2. As of August 2003:</a>18922 <a href="#id608411">7.3.2. As of August 2003:</a> 18920 18923 </span> 18921 18924 </dt> … … 19168 19171 <div> 19169 19172 <div> 19170 <h3 class="title"><a id="id6 18987"></a>7.3.2. As of August 2003:</h3>19173 <h3 class="title"><a id="id608411"></a>7.3.2. As of August 2003:</h3> 19171 19174 </div> 19172 19175 </div> … … 19620 19623 <div> 19621 19624 <div class="refsect1" lang="en" xml:lang="en"> 19622 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 54559"></a>19625 <a xmlns="http://www.w3.org/1999/xhtml" id="id628667"></a> 19623 19626 <div class="header">Values:</div> 19624 19627 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">result</span></i>---a list of all lisp processes (threads) … … 19626 19629 </div> 19627 19630 <div class="refsect1" lang="en" xml:lang="en"> 19628 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 54584"></a>19631 <a xmlns="http://www.w3.org/1999/xhtml" id="id628693"></a> 19629 19632 <div class="header">Description:</div> 19630 19633 <p xmlns="http://www.w3.org/1999/xhtml">Returns a list of all lisp processes (threads) known … … 19638 19641 </div> 19639 19642 <div class="refsect1" lang="en" xml:lang="en"> 19640 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 54599"></a>19643 <a xmlns="http://www.w3.org/1999/xhtml" id="id628708"></a> 19641 19644 <div class="header">See Also:</div> 19642 19645 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"> … … 19666 19669 <div> 19667 19670 <div class="refsect1" lang="en" xml:lang="en"> 19668 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 54669"></a>19671 <a xmlns="http://www.w3.org/1999/xhtml" id="id628777"></a> 19669 19672 <div class="header">Arguments and Values:</div> 19670 19673 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---a string, used to identify the process.</p> … … 19709 19712 </div> 19710 19713 <div class="refsect1" lang="en" xml:lang="en"> 19711 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 54863"></a>19714 <a xmlns="http://www.w3.org/1999/xhtml" id="id628971"></a> 19712 19715 <div class="header">Description:</div> 19713 19716 <p xmlns="http://www.w3.org/1999/xhtml">Creates and returns a new lisp process (thread) with the … … 19730 19733 </div> 19731 19734 <div class="refsect1" lang="en" xml:lang="en"> 19732 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 54915"></a>19735 <a xmlns="http://www.w3.org/1999/xhtml" id="id629023"></a> 19733 19736 <div class="header">See Also:</div> 19734 19737 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-preset" title="Function PROCESS-PRESET"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-preset</b></a>, <a class="xref" href="#f_process-enable" title="Function PROCESS-ENABLE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-enable</b></a>, <a class="xref" href="#f_process-run-function" title="Function PROCESS-RUN-FUNCTION"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-run-function</b></a></span> … … 19749 19752 <div> 19750 19753 <div class="refsect1" lang="en" xml:lang="en"> 19751 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 54993"></a>19754 <a xmlns="http://www.w3.org/1999/xhtml" id="id629102"></a> 19752 19755 <div class="header">Arguments and Values:</div> 19753 19756 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 19759 19762 </div> 19760 19763 <div class="refsect1" lang="en" xml:lang="en"> 19761 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 55047"></a>19764 <a xmlns="http://www.w3.org/1999/xhtml" id="id629156"></a> 19762 19765 <div class="header">Description:</div> 19763 19766 <p xmlns="http://www.w3.org/1999/xhtml">Suspends <em class="varname">process</em>, preventing it from … … 19781 19784 </div> 19782 19785 <div class="refsect1" lang="en" xml:lang="en"> 19783 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 55102"></a>19786 <a xmlns="http://www.w3.org/1999/xhtml" id="id629211"></a> 19784 19787 <div class="header">See Also:</div> 19785 19788 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-resume" title="Function PROCESS-RESUME"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-resume</b></a>, <a class="xref" href="#f_process-suspend-count" title="Function PROCESS-SUSPEND-COUNT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-suspend-count</b></a></span> 19786 19789 </div> 19787 19790 <div class="refsect1" lang="en" xml:lang="en"> 19788 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 55127"></a>19791 <a xmlns="http://www.w3.org/1999/xhtml" id="id629236"></a> 19789 19792 <div class="header">Notes:</div> 19790 19793 <p xmlns="http://www.w3.org/1999/xhtml"><span class="function"><strong>process-suspend</strong></span> was previously called … … 19812 19815 <div> 19813 19816 <div class="refsect1" lang="en" xml:lang="en"> 19814 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 55208"></a>19817 <a xmlns="http://www.w3.org/1999/xhtml" id="id629317"></a> 19815 19818 <div class="header">Arguments and Values:</div> 19816 19819 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 19823 19826 </div> 19824 19827 <div class="refsect1" lang="en" xml:lang="en"> 19825 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64784"></a>19828 <a xmlns="http://www.w3.org/1999/xhtml" id="id638923"></a> 19826 19829 <div class="header">Description:</div> 19827 19830 <p xmlns="http://www.w3.org/1999/xhtml">Undoes the effect of a previous call to … … 19834 19837 </div> 19835 19838 <div class="refsect1" lang="en" xml:lang="en"> 19836 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64815"></a>19839 <a xmlns="http://www.w3.org/1999/xhtml" id="id638953"></a> 19837 19840 <div class="header">See Also:</div> 19838 19841 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-suspend" title="Function PROCESS-SUSPEND"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-suspend</b></a>, <a class="xref" href="#f_process-suspend-count" title="Function PROCESS-SUSPEND-COUNT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-suspend-count</b></a></span> 19839 19842 </div> 19840 19843 <div class="refsect1" lang="en" xml:lang="en"> 19841 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64840"></a>19844 <a xmlns="http://www.w3.org/1999/xhtml" id="id638978"></a> 19842 19845 <div class="header">Notes:</div> 19843 19846 <p xmlns="http://www.w3.org/1999/xhtml"> … … 19865 19868 <div> 19866 19869 <div class="refsect1" lang="en" xml:lang="en"> 19867 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64905"></a>19870 <a xmlns="http://www.w3.org/1999/xhtml" id="id639043"></a> 19868 19871 <div class="header">Arguments and Values:</div> 19869 19872 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 19875 19878 </div> 19876 19879 <div class="refsect1" lang="en" xml:lang="en"> 19877 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64959"></a>19880 <a xmlns="http://www.w3.org/1999/xhtml" id="id639097"></a> 19878 19881 <div class="header">Description:</div> 19879 19882 <p xmlns="http://www.w3.org/1999/xhtml">An "outstanding" <a class="xref" href="#f_process-suspend" title="Function PROCESS-SUSPEND"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-suspend</b></a> call … … 19890 19893 </div> 19891 19894 <div class="refsect1" lang="en" xml:lang="en"> 19892 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65008"></a>19895 <a xmlns="http://www.w3.org/1999/xhtml" id="id639147"></a> 19893 19896 <div class="header">See Also:</div> 19894 19897 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-suspend" title="Function PROCESS-SUSPEND"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-suspend</b></a>, <a class="xref" href="#f_process-resume" title="Function PROCESS-RESUME"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-resume</b></a></span> … … 19911 19914 <div> 19912 19915 <div class="refsect1" lang="en" xml:lang="en"> 19913 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65084"></a>19916 <a xmlns="http://www.w3.org/1999/xhtml" id="id639223"></a> 19914 19917 <div class="header">Arguments and Values:</div> 19915 19918 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 19922 19925 </div> 19923 19926 <div class="refsect1" lang="en" xml:lang="en"> 19924 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65159"></a>19927 <a xmlns="http://www.w3.org/1999/xhtml" id="id639297"></a> 19925 19928 <div class="header">Description:</div> 19926 19929 <p xmlns="http://www.w3.org/1999/xhtml">Typically used to initialize a newly-created or newly-reset … … 19936 19939 </div> 19937 19940 <div class="refsect1" lang="en" xml:lang="en"> 19938 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65203"></a>19941 <a xmlns="http://www.w3.org/1999/xhtml" id="id639340"></a> 19939 19942 <div class="header">See Also:</div> 19940 19943 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-process" title="Function MAKE-PROCESS"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-process</b></a>, <a class="xref" href="#f_process-enable" title="Function PROCESS-ENABLE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-enable</b></a>, <a class="xref" href="#f_process-run-function" title="Function PROCESS-RUN-FUNCTION"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-run-function</b></a></span> … … 19957 19960 <div> 19958 19961 <div class="refsect1" lang="en" xml:lang="en"> 19959 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65286"></a>19962 <a xmlns="http://www.w3.org/1999/xhtml" id="id639422"></a> 19960 19963 <div class="header">Arguments and Values:</div> 19961 19964 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 19966 19969 </div> 19967 19970 <div class="refsect1" lang="en" xml:lang="en"> 19968 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65347"></a>19971 <a xmlns="http://www.w3.org/1999/xhtml" id="id639484"></a> 19969 19972 <div class="header">Description:</div> 19970 19973 <p xmlns="http://www.w3.org/1999/xhtml">Tries to begin the execution of <em class="varname">process</em>. … … 19983 19986 </div> 19984 19987 <div class="refsect1" lang="en" xml:lang="en"> 19985 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65396"></a>19988 <a xmlns="http://www.w3.org/1999/xhtml" id="id639532"></a> 19986 19989 <div class="header">See Also:</div> 19987 19990 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-process" title="Function MAKE-PROCESS"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-process</b></a>, <a class="xref" href="#f_process-preset" title="Function PROCESS-PRESET"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-preset</b></a>, <a class="xref" href="#f_process-run-function" title="Function PROCESS-RUN-FUNCTION"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-run-function</b></a></span> 19988 19991 </div> 19989 19992 <div class="refsect1" lang="en" xml:lang="en"> 19990 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65427"></a>19993 <a xmlns="http://www.w3.org/1999/xhtml" id="id639563"></a> 19991 19994 <div class="header">Notes:</div> 19992 19995 <p xmlns="http://www.w3.org/1999/xhtml">It would be nice to have more discussion of what it means … … 20009 20012 <div> 20010 20013 <div class="refsect1" lang="en" xml:lang="en"> 20011 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65542"></a>20014 <a xmlns="http://www.w3.org/1999/xhtml" id="id639678"></a> 20012 20015 <div class="header">Arguments and Values:</div> 20013 20016 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---a string, used to identify the process. … … 20031 20034 </div> 20032 20035 <div class="refsect1" lang="en" xml:lang="en"> 20033 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65731"></a>20036 <a xmlns="http://www.w3.org/1999/xhtml" id="id639867"></a> 20034 20037 <div class="header">Description:</div> 20035 20038 <p xmlns="http://www.w3.org/1999/xhtml">Creates a lisp process (thread) via … … 20044 20047 </div> 20045 20048 <div class="refsect1" lang="en" xml:lang="en"> 20046 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65766"></a>20049 <a xmlns="http://www.w3.org/1999/xhtml" id="id639902"></a> 20047 20050 <div class="header">See Also:</div> 20048 20051 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-process" title="Function MAKE-PROCESS"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-process</b></a>, <a class="xref" href="#f_process-preset" title="Function PROCESS-PRESET"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-preset</b></a>, <a class="xref" href="#f_process-enable" title="Function PROCESS-ENABLE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-enable</b></a></span> … … 20065 20068 <div> 20066 20069 <div class="refsect1" lang="en" xml:lang="en"> 20067 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65850"></a>20070 <a xmlns="http://www.w3.org/1999/xhtml" id="id639985"></a> 20068 20071 <div class="header">Arguments and Values:</div> 20069 20072 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 20078 20081 </div> 20079 20082 <div class="refsect1" lang="en" xml:lang="en"> 20080 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 65942"></a>20083 <a xmlns="http://www.w3.org/1999/xhtml" id="id640078"></a> 20081 20084 <div class="header">Description:</div> 20082 20085 <p xmlns="http://www.w3.org/1999/xhtml">Arranges for <em class="varname">process</em> … … 20109 20112 </div> 20110 20113 <div class="refsect1" lang="en" xml:lang="en"> 20111 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66017"></a>20114 <a xmlns="http://www.w3.org/1999/xhtml" id="id640152"></a> 20112 20115 <div class="header">See Also:</div> 20113 20116 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"> … … 20118 20121 </div> 20119 20122 <div class="refsect1" lang="en" xml:lang="en"> 20120 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66036"></a>20123 <a xmlns="http://www.w3.org/1999/xhtml" id="id640171"></a> 20121 20124 <div class="header">Notes:</div> 20122 20125 <p xmlns="http://www.w3.org/1999/xhtml">It would probably be better for <em class="varname">result</em> … … 20148 20151 <div> 20149 20152 <div class="refsect1" lang="en" xml:lang="en"> 20150 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66101"></a>20153 <a xmlns="http://www.w3.org/1999/xhtml" id="id640236"></a> 20151 20154 <div class="header">Value Type:</div> 20152 20155 <p xmlns="http://www.w3.org/1999/xhtml">A lisp process (thread).</p> 20153 20156 </div> 20154 20157 <div class="refsect1" lang="en" xml:lang="en"> 20155 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66112"></a>20158 <a xmlns="http://www.w3.org/1999/xhtml" id="id640248"></a> 20156 20159 <div class="header">Initial Value:</div> 20157 20160 <p xmlns="http://www.w3.org/1999/xhtml">Bound separately in each process, to that process itself. … … 20159 20162 </div> 20160 20163 <div class="refsect1" lang="en" xml:lang="en"> 20161 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66124"></a>20164 <a xmlns="http://www.w3.org/1999/xhtml" id="id640259"></a> 20162 20165 <div class="header">Description:</div> 20163 20166 <p xmlns="http://www.w3.org/1999/xhtml">Used when lisp code needs to find out what process it is … … 20165 20168 </div> 20166 20169 <div class="refsect1" lang="en" xml:lang="en"> 20167 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66136"></a>20170 <a xmlns="http://www.w3.org/1999/xhtml" id="id640271"></a> 20168 20171 <div class="header">See Also:</div> 20169 20172 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"> … … 20189 20192 <div> 20190 20193 <div class="refsect1" lang="en" xml:lang="en"> 20191 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66206"></a>20194 <a xmlns="http://www.w3.org/1999/xhtml" id="id640342"></a> 20192 20195 <div class="header">Arguments and Values:</div> 20193 20196 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 20196 20199 </div> 20197 20200 <div class="refsect1" lang="en" xml:lang="en"> 20198 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66262"></a>20201 <a xmlns="http://www.w3.org/1999/xhtml" id="id640398"></a> 20199 20202 <div class="header">Description:</div> 20200 20203 <p xmlns="http://www.w3.org/1999/xhtml">Causes <em class="varname">process</em> to cleanly exit … … 20223 20226 </div> 20224 20227 <div class="refsect1" lang="en" xml:lang="en"> 20225 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66330"></a>20228 <a xmlns="http://www.w3.org/1999/xhtml" id="id640465"></a> 20226 20229 <div class="header">See Also:</div> 20227 20230 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-kill" title="Function PROCESS-KILL"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-kill</b></a>, <a class="xref" href="#f_process-abort" title="Function PROCESS-ABORT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-abort</b></a></span> … … 20243 20246 <div> 20244 20247 <div class="refsect1" lang="en" xml:lang="en"> 20245 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66403"></a>20248 <a xmlns="http://www.w3.org/1999/xhtml" id="id640538"></a> 20246 20249 <div class="header">Arguments and Values:</div> 20247 20250 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread), which … … 20250 20253 </div> 20251 20254 <div class="refsect1" lang="en" xml:lang="en"> 20252 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66444"></a>20255 <a xmlns="http://www.w3.org/1999/xhtml" id="id640580"></a> 20253 20256 <div class="header">Description:</div> 20254 20257 <p xmlns="http://www.w3.org/1999/xhtml"> … … 20258 20261 </div> 20259 20262 <div class="refsect1" lang="en" xml:lang="en"> 20260 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66456"></a>20263 <a xmlns="http://www.w3.org/1999/xhtml" id="id640592"></a> 20261 20264 <div class="header">See Also:</div> 20262 20265 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-reset" title="Function PROCESS-RESET"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-reset</b></a>, <a class="xref" href="#f_process-enable" title="Function PROCESS-ENABLE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-enable</b></a></span> … … 20278 20281 <div> 20279 20282 <div class="refsect1" lang="en" xml:lang="en"> 20280 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66529"></a>20283 <a xmlns="http://www.w3.org/1999/xhtml" id="id640665"></a> 20281 20284 <div class="header">Arguments and Values:</div> 20282 20285 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 20284 20287 </div> 20285 20288 <div class="refsect1" lang="en" xml:lang="en"> 20286 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66571"></a>20289 <a xmlns="http://www.w3.org/1999/xhtml" id="id640706"></a> 20287 20290 <div class="header">Description:</div> 20288 20291 <p xmlns="http://www.w3.org/1999/xhtml"> … … 20292 20295 </div> 20293 20296 <div class="refsect1" lang="en" xml:lang="en"> 20294 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66585"></a>20297 <a xmlns="http://www.w3.org/1999/xhtml" id="id640721"></a> 20295 20298 <div class="header">See Also:</div> 20296 20299 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-reset" title="Function PROCESS-RESET"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-reset</b></a>, <a class="xref" href="#f_process-abort" title="Function PROCESS-ABORT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-abort</b></a></span> … … 20314 20317 <div> 20315 20318 <div class="refsect1" lang="en" xml:lang="en"> 20316 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66668"></a>20319 <a xmlns="http://www.w3.org/1999/xhtml" id="id640804"></a> 20317 20320 <div class="header">Arguments and Values:</div> 20318 20321 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a lisp process (thread).</p> … … 20320 20323 </div> 20321 20324 <div class="refsect1" lang="en" xml:lang="en"> 20322 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66710"></a>20325 <a xmlns="http://www.w3.org/1999/xhtml" id="id640845"></a> 20323 20326 <div class="header">Description:</div> 20324 20327 <p xmlns="http://www.w3.org/1999/xhtml">Entirely equivalent to calling … … 20334 20337 </div> 20335 20338 <div class="refsect1" lang="en" xml:lang="en"> 20336 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66773"></a>20339 <a xmlns="http://www.w3.org/1999/xhtml" id="id640909"></a> 20337 20340 <div class="header">See Also:</div> 20338 20341 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-reset" title="Function PROCESS-RESET"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-reset</b></a>, <a class="xref" href="#f_process-kill" title="Function PROCESS-KILL"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-kill</b></a></span> … … 20353 20356 <div> 20354 20357 <div class="refsect1" lang="en" xml:lang="en"> 20355 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66832"></a>20358 <a xmlns="http://www.w3.org/1999/xhtml" id="id640967"></a> 20356 20359 <div class="header">Value Type:</div> 20357 20360 <p xmlns="http://www.w3.org/1999/xhtml">A positive integer.</p> 20358 20361 </div> 20359 20362 <div class="refsect1" lang="en" xml:lang="en"> 20360 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66843"></a>20363 <a xmlns="http://www.w3.org/1999/xhtml" id="id640978"></a> 20361 20364 <div class="header">Initial Value:</div> 20362 20365 <p xmlns="http://www.w3.org/1999/xhtml">The clock resolution of the OS scheduler. Currently, … … 20365 20368 </div> 20366 20369 <div class="refsect1" lang="en" xml:lang="en"> 20367 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66855"></a>20370 <a xmlns="http://www.w3.org/1999/xhtml" id="id640991"></a> 20368 20371 <div class="header">Description:</div> 20369 20372 <p xmlns="http://www.w3.org/1999/xhtml">This value is ordinarily of marginal interest at best, … … 20373 20376 </div> 20374 20377 <div class="refsect1" lang="en" xml:lang="en"> 20375 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66868"></a>20378 <a xmlns="http://www.w3.org/1999/xhtml" id="id641004"></a> 20376 20379 <div class="header">See Also:</div> 20377 20380 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"> … … 20397 20400 <div> 20398 20401 <div class="refsect1" lang="en" xml:lang="en"> 20399 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 66973"></a>20402 <a xmlns="http://www.w3.org/1999/xhtml" id="id641108"></a> 20400 20403 <div class="header">Description:</div> 20401 20404 <p xmlns="http://www.w3.org/1999/xhtml">This information is primarily for the benefit of … … 20411 20414 </div> 20412 20415 <div class="refsect1" lang="en" xml:lang="en"> 20413 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67016"></a>20416 <a xmlns="http://www.w3.org/1999/xhtml" id="id641151"></a> 20414 20417 <div class="header">See Also:</div> 20415 20418 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-wait" title="Function PROCESS-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-wait</b></a>, <a class="xref" href="#f_process-wait-with-timeout" title="Function PROCESS-WAIT-WITH-TIMEOUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-wait-with-timeout</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> 20416 20419 </div> 20417 20420 <div class="refsect1" lang="en" xml:lang="en"> 20418 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67046"></a>20421 <a xmlns="http://www.w3.org/1999/xhtml" id="id641182"></a> 20419 20422 <div class="header">Notes:</div> 20420 20423 <p xmlns="http://www.w3.org/1999/xhtml">This should arguably be SETFable, but doesn't seem to … … 20440 20443 <div> 20441 20444 <div class="refsect1" lang="en" xml:lang="en"> 20442 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67105"></a>20445 <a xmlns="http://www.w3.org/1999/xhtml" id="id641241"></a> 20443 20446 <div class="header">Description:</div> 20444 20447 <p xmlns="http://www.w3.org/1999/xhtml">Advises the OS scheduler that the current thread has nothing … … 20449 20452 </div> 20450 20453 <div class="refsect1" lang="en" xml:lang="en"> 20451 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67119"></a>20454 <a xmlns="http://www.w3.org/1999/xhtml" id="id641254"></a> 20452 20455 <div class="header">See Also:</div> 20453 20456 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> 20454 20457 </div> 20455 20458 <div class="refsect1" lang="en" xml:lang="en"> 20456 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67167"></a>20459 <a xmlns="http://www.w3.org/1999/xhtml" id="id641302"></a> 20457 20460 <div class="header">Notes:</div> 20458 20461 <p xmlns="http://www.w3.org/1999/xhtml">This is a holdover from the days of cooperative … … 20477 20480 <div> 20478 20481 <div class="refsect1" lang="en" xml:lang="en"> 20479 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67231"></a>20482 <a xmlns="http://www.w3.org/1999/xhtml" id="id641367"></a> 20480 20483 <div class="header">Arguments and Values:</div> 20481 20484 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">whostate</span></i>---a string, which will be the value of … … 20490 20493 </div> 20491 20494 <div class="refsect1" lang="en" xml:lang="en"> 20492 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67311"></a>20495 <a xmlns="http://www.w3.org/1999/xhtml" id="id641446"></a> 20493 20496 <div class="header">Description:</div> 20494 20497 <p xmlns="http://www.w3.org/1999/xhtml">Causes the current lisp process (thread) to repeatedly … … 20507 20510 </div> 20508 20511 <div class="refsect1" lang="en" xml:lang="en"> 20509 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67346"></a>20512 <a xmlns="http://www.w3.org/1999/xhtml" id="id641482"></a> 20510 20513 <div class="header">See Also:</div> 20511 20514 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_process-whostate" title="Function PROCESS-WHOSTATE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-whostate</b></a>, <a class="xref" href="#f_process-wait-with-timeout" title="Function PROCESS-WAIT-WITH-TIMEOUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-wait-with-timeout</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20527 20530 <div> 20528 20531 <div class="refsect1" lang="en" xml:lang="en"> 20529 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67455"></a>20532 <a xmlns="http://www.w3.org/1999/xhtml" id="id641590"></a> 20530 20533 <div class="header">Arguments and Values:</div> 20531 20534 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">whostate</span></i>---a string, which will be the value of … … 20545 20548 </div> 20546 20549 <div class="refsect1" lang="en" xml:lang="en"> 20547 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67569"></a>20550 <a xmlns="http://www.w3.org/1999/xhtml" id="id641705"></a> 20548 20551 <div class="header">Description:</div> 20549 20552 <p xmlns="http://www.w3.org/1999/xhtml">If <em class="varname">ticks</em> is NIL, behaves exactly like … … 20562 20565 </div> 20563 20566 <div class="refsect1" lang="en" xml:lang="en"> 20564 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 67619"></a>20567 <a xmlns="http://www.w3.org/1999/xhtml" id="id641755"></a> 20565 20568 <div class="header">See Also:</div> 20566 20569 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#v_ticks-per-second" title="Variable *TICKS-PER-SECOND*"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">*ticks-per-second*</b></a>, <a class="xref" href="#f_process-whostate" title="Function PROCESS-WHOSTATE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-whostate</b></a>, <a class="xref" href="#f_process-wait" title="Function PROCESS-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-wait</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20582 20585 <div> 20583 20586 <div class="refsect1" lang="en" xml:lang="en"> 20584 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70014"></a>20587 <a xmlns="http://www.w3.org/1999/xhtml" id="id644150"></a> 20585 20588 <div class="header">Arguments and Values:</div> 20586 20589 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">body</span></i>---an implicit progn.</p> … … 20589 20592 </div> 20590 20593 <div class="refsect1" lang="en" xml:lang="en"> 20591 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70059"></a>20594 <a xmlns="http://www.w3.org/1999/xhtml" id="id644194"></a> 20592 20595 <div class="header">Description:</div> 20593 20596 <p xmlns="http://www.w3.org/1999/xhtml">Executes <em class="varname">body</em> … … 20604 20607 </div> 20605 20608 <div class="refsect1" lang="en" xml:lang="en"> 20606 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70090"></a>20609 <a xmlns="http://www.w3.org/1999/xhtml" id="id644226"></a> 20607 20610 <div class="header">See Also:</div> 20608 20611 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"> … … 20628 20631 <div> 20629 20632 <div class="refsect1" lang="en" xml:lang="en"> 20630 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70162"></a>20633 <a xmlns="http://www.w3.org/1999/xhtml" id="id644298"></a> 20631 20634 <div class="header">Arguments and Values:</div> 20632 20635 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">body</span></i>---an implicit progn.</p> … … 20635 20638 </div> 20636 20639 <div class="refsect1" lang="en" xml:lang="en"> 20637 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70207"></a>20640 <a xmlns="http://www.w3.org/1999/xhtml" id="id644342"></a> 20638 20641 <div class="header">Description:</div> 20639 20642 <p xmlns="http://www.w3.org/1999/xhtml">Executes <em class="varname">body</em> … … 20658 20661 <div> 20659 20662 <div class="refsect1" lang="en" xml:lang="en"> 20660 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70278"></a>20663 <a xmlns="http://www.w3.org/1999/xhtml" id="id644414"></a> 20661 20664 <div class="header">Arguments and Values:</div> 20662 20665 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---any lisp object; saved as part of … … 20668 20671 </div> 20669 20672 <div class="refsect1" lang="en" xml:lang="en"> 20670 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70331"></a>20673 <a xmlns="http://www.w3.org/1999/xhtml" id="id644466"></a> 20671 20674 <div class="header">Description:</div> 20672 20675 <p xmlns="http://www.w3.org/1999/xhtml">Creates and returns a lock object, which can … … 20678 20681 </div> 20679 20682 <div class="refsect1" lang="en" xml:lang="en"> 20680 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70347"></a>20683 <a xmlns="http://www.w3.org/1999/xhtml" id="id644483"></a> 20681 20684 <div class="header">See Also:</div> 20682 20685 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#m_with-lock-grabbed" title="Macro WITH-LOCK-GRABBED"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-lock-grabbed</b></a>, <a class="xref" href="#f_grab-lock" title="Function GRAB-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">grab-lock</b></a>, <a class="xref" href="#f_release-lock" title="Function RELEASE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">release-lock</b></a>, <a class="xref" href="#f_try-lock" title="Function TRY-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">try-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20698 20701 <div> 20699 20702 <div class="refsect1" lang="en" xml:lang="en"> 20700 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70464"></a>20703 <a xmlns="http://www.w3.org/1999/xhtml" id="id644600"></a> 20701 20704 <div class="header">Arguments and Values:</div> 20702 20705 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">lock</span></i>---an object of type CCL:LOCK.</p> … … 20706 20709 </div> 20707 20710 <div class="refsect1" lang="en" xml:lang="en"> 20708 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70524"></a>20711 <a xmlns="http://www.w3.org/1999/xhtml" id="id644660"></a> 20709 20712 <div class="header">Description:</div> 20710 20713 <p xmlns="http://www.w3.org/1999/xhtml">Waits until <em class="varname">lock</em> is either free or … … 20717 20720 </div> 20718 20721 <div class="refsect1" lang="en" xml:lang="en"> 20719 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70557"></a>20722 <a xmlns="http://www.w3.org/1999/xhtml" id="id644692"></a> 20720 20723 <div class="header">See Also:</div> 20721 20724 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_grab-lock" title="Function GRAB-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">grab-lock</b></a>, <a class="xref" href="#f_release-lock" title="Function RELEASE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">release-lock</b></a>, <a class="xref" href="#f_try-lock" title="Function TRY-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">try-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20736 20739 <div> 20737 20740 <div class="refsect1" lang="en" xml:lang="en"> 20738 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70670"></a>20741 <a xmlns="http://www.w3.org/1999/xhtml" id="id644805"></a> 20739 20742 <div class="header">Arguments and Values:</div> 20740 20743 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">lock</span></i>---an object of type CCL:LOCK.</p> 20741 20744 </div> 20742 20745 <div class="refsect1" lang="en" xml:lang="en"> 20743 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70696"></a>20746 <a xmlns="http://www.w3.org/1999/xhtml" id="id644832"></a> 20744 20747 <div class="header">Description:</div> 20745 20748 <p xmlns="http://www.w3.org/1999/xhtml">Blocks until <em class="varname">lock</em> is owned by the … … 20752 20755 </div> 20753 20756 <div class="refsect1" lang="en" xml:lang="en"> 20754 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70734"></a>20757 <a xmlns="http://www.w3.org/1999/xhtml" id="id644870"></a> 20755 20758 <div class="header">See Also:</div> 20756 20759 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#m_with-lock-grabbed" title="Macro WITH-LOCK-GRABBED"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-lock-grabbed</b></a>, <a class="xref" href="#f_release-lock" title="Function RELEASE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">release-lock</b></a>, <a class="xref" href="#f_try-lock" title="Function TRY-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">try-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20770 20773 <div> 20771 20774 <div class="refsect1" lang="en" xml:lang="en"> 20772 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70847"></a>20775 <a xmlns="http://www.w3.org/1999/xhtml" id="id644983"></a> 20773 20776 <div class="header">Arguments and Values:</div> 20774 20777 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">lock</span></i>---an object of type CCL:LOCK.</p> 20775 20778 </div> 20776 20779 <div class="refsect1" lang="en" xml:lang="en"> 20777 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70874"></a>20780 <a xmlns="http://www.w3.org/1999/xhtml" id="id645009"></a> 20778 20781 <div class="header">Description:</div> 20779 20782 <p xmlns="http://www.w3.org/1999/xhtml">Signals an error of type CCL:LOCK-NOT-OWNER if … … 20788 20791 </div> 20789 20792 <div class="refsect1" lang="en" xml:lang="en"> 20790 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 70912"></a>20793 <a xmlns="http://www.w3.org/1999/xhtml" id="id645048"></a> 20791 20794 <div class="header">See Also:</div> 20792 20795 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#m_with-lock-grabbed" title="Macro WITH-LOCK-GRABBED"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-lock-grabbed</b></a>, <a class="xref" href="#f_grab-lock" title="Function GRAB-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">grab-lock</b></a>, <a class="xref" href="#f_try-lock" title="Function TRY-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">try-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20807 20810 <div> 20808 20811 <div class="refsect1" lang="en" xml:lang="en"> 20809 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71025"></a>20812 <a xmlns="http://www.w3.org/1999/xhtml" id="id645161"></a> 20810 20813 <div class="header">Arguments and Values:</div> 20811 20814 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">lock</span></i>---an object of type CCL:LOCK.</p> … … 20814 20817 </div> 20815 20818 <div class="refsect1" lang="en" xml:lang="en"> 20816 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71070"></a>20819 <a xmlns="http://www.w3.org/1999/xhtml" id="id645206"></a> 20817 20820 <div class="header">Description:</div> 20818 20821 <p xmlns="http://www.w3.org/1999/xhtml">Tests whether <em class="varname">lock</em> … … 20827 20830 </div> 20828 20831 <div class="refsect1" lang="en" xml:lang="en"> 20829 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71096"></a>20832 <a xmlns="http://www.w3.org/1999/xhtml" id="id645231"></a> 20830 20833 <div class="header">See Also:</div> 20831 20834 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#m_with-lock-grabbed" title="Macro WITH-LOCK-GRABBED"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-lock-grabbed</b></a>, <a class="xref" href="#f_grab-lock" title="Function GRAB-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">grab-lock</b></a>, <a class="xref" href="#f_release-lock" title="Function RELEASE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">release-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20847 20850 <div> 20848 20851 <div class="refsect1" lang="en" xml:lang="en"> 20849 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71209"></a>20852 <a xmlns="http://www.w3.org/1999/xhtml" id="id645345"></a> 20850 20853 <div class="header">Arguments and Values:</div> 20851 20854 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">read-write-lock</span></i>---a newly-allocated object of type … … 20853 20856 </div> 20854 20857 <div class="refsect1" lang="en" xml:lang="en"> 20855 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71236"></a>20858 <a xmlns="http://www.w3.org/1999/xhtml" id="id645371"></a> 20856 20859 <div class="header">Description:</div> 20857 20860 <p xmlns="http://www.w3.org/1999/xhtml">Creates and returns an object of type CCL::READ-WRITE-LOCK. … … 20864 20867 </div> 20865 20868 <div class="refsect1" lang="en" xml:lang="en"> 20866 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71254"></a>20869 <a xmlns="http://www.w3.org/1999/xhtml" id="id645389"></a> 20867 20870 <div class="header">See Also:</div> 20868 20871 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#m_with-read-lock" title="Macro WITH-READ-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-read-lock</b></a>, <a class="xref" href="#m_with-write-lock" title="Macro WITH-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-write-lock</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> 20869 20872 </div> 20870 20873 <div class="refsect1" lang="en" xml:lang="en"> 20871 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71307"></a>20874 <a xmlns="http://www.w3.org/1999/xhtml" id="id645443"></a> 20872 20875 <div class="header">Notes:</div> 20873 20876 <p xmlns="http://www.w3.org/1999/xhtml">There probably should be some way to … … 20892 20895 <div> 20893 20896 <div class="refsect1" lang="en" xml:lang="en"> 20894 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71372"></a>20897 <a xmlns="http://www.w3.org/1999/xhtml" id="id645507"></a> 20895 20898 <div class="header">Arguments and Values:</div> 20896 20899 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">read-write-lock</span></i>---an object of type … … 20901 20904 </div> 20902 20905 <div class="refsect1" lang="en" xml:lang="en"> 20903 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71431"></a>20906 <a xmlns="http://www.w3.org/1999/xhtml" id="id645567"></a> 20904 20907 <div class="header">Description:</div> 20905 20908 <p xmlns="http://www.w3.org/1999/xhtml">Waits until <em class="varname">read-write-lock</em> has no … … 20915 20918 </div> 20916 20919 <div class="refsect1" lang="en" xml:lang="en"> 20917 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71476"></a>20920 <a xmlns="http://www.w3.org/1999/xhtml" id="id645612"></a> 20918 20921 <div class="header">See Also:</div> 20919 20922 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#m_with-write-lock" title="Macro WITH-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-write-lock</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20935 20938 <div> 20936 20939 <div class="refsect1" lang="en" xml:lang="en"> 20937 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71582"></a>20940 <a xmlns="http://www.w3.org/1999/xhtml" id="id645718"></a> 20938 20941 <div class="header">Arguments and Values:</div> 20939 20942 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">read-write-lock</span></i>---an object of type … … 20944 20947 </div> 20945 20948 <div class="refsect1" lang="en" xml:lang="en"> 20946 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71641"></a>20949 <a xmlns="http://www.w3.org/1999/xhtml" id="id645777"></a> 20947 20950 <div class="header">Description:</div> 20948 20951 <p xmlns="http://www.w3.org/1999/xhtml">Waits until <em class="varname">read-write-lock</em> has no … … 20959 20962 </div> 20960 20963 <div class="refsect1" lang="en" xml:lang="en"> 20961 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71692"></a>20964 <a xmlns="http://www.w3.org/1999/xhtml" id="id645828"></a> 20962 20965 <div class="header">See Also:</div> 20963 20966 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#m_with-read-lock" title="Macro WITH-READ-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-read-lock</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 20979 20982 <div> 20980 20983 <div class="refsect1" lang="en" xml:lang="en"> 20981 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71794"></a>20984 <a xmlns="http://www.w3.org/1999/xhtml" id="id645930"></a> 20982 20985 <div class="header">Arguments and Values:</div> 20983 20986 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">semaphore</span></i>---a newly-allocated object of type CCL:SEMAPHORE.</p> 20984 20987 </div> 20985 20988 <div class="refsect1" lang="en" xml:lang="en"> 20986 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71820"></a>20989 <a xmlns="http://www.w3.org/1999/xhtml" id="id645956"></a> 20987 20990 <div class="header">Description:</div> 20988 20991 <p xmlns="http://www.w3.org/1999/xhtml">Creates and returns an object of type CCL:SEMAPHORE. … … 20993 20996 </div> 20994 20997 <div class="refsect1" lang="en" xml:lang="en"> 20995 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71837"></a>20998 <a xmlns="http://www.w3.org/1999/xhtml" id="id645973"></a> 20996 20999 <div class="header">See Also:</div> 20997 21000 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_signal-semaphore" title="Function SIGNAL-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">signal-semaphore</b></a>, <a class="xref" href="#f_wait-on-semaphore" title="Function WAIT-ON-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">wait-on-semaphore</b></a>, <a class="xref" href="#f_timed-wait-on-semaphore" title="Function TIMED-WAIT-ON-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">timed-wait-on-semaphore</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 21013 21016 <div> 21014 21017 <div class="refsect1" lang="en" xml:lang="en"> 21015 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71945"></a>21018 <a xmlns="http://www.w3.org/1999/xhtml" id="id646080"></a> 21016 21019 <div class="header">Arguments and Values:</div> 21017 21020 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">semaphore</span></i>---an object of type CCL:SEMAPHORE.</p> … … 21020 21023 </div> 21021 21024 <div class="refsect1" lang="en" xml:lang="en"> 21022 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 71987"></a>21025 <a xmlns="http://www.w3.org/1999/xhtml" id="id646122"></a> 21023 21026 <div class="header">Description:</div> 21024 21027 <p xmlns="http://www.w3.org/1999/xhtml">Atomically increments <em class="varname">semaphore</em>'s … … 21027 21030 </div> 21028 21031 <div class="refsect1" lang="en" xml:lang="en"> 21029 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72002"></a>21032 <a xmlns="http://www.w3.org/1999/xhtml" id="id646138"></a> 21030 21033 <div class="header">See Also:</div> 21031 21034 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_wait-on-semaphore" title="Function WAIT-ON-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">wait-on-semaphore</b></a>, <a class="xref" href="#f_timed-wait-on-semaphore" title="Function TIMED-WAIT-ON-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">timed-wait-on-semaphore</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> 21032 21035 </div> 21033 21036 <div class="refsect1" lang="en" xml:lang="en"> 21034 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72062"></a>21037 <a xmlns="http://www.w3.org/1999/xhtml" id="id646197"></a> 21035 21038 <div class="header">Notes:</div> 21036 21039 <p xmlns="http://www.w3.org/1999/xhtml"><em class="varname">result</em> should probably be interpreted … … 21055 21058 <div> 21056 21059 <div class="refsect1" lang="en" xml:lang="en"> 21057 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72130"></a>21060 <a xmlns="http://www.w3.org/1999/xhtml" id="id646266"></a> 21058 21061 <div class="header">Arguments and Values:</div> 21059 21062 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">semaphore</span></i>---an object of type CCL:SEMAPHORE.</p> … … 21062 21065 </div> 21063 21066 <div class="refsect1" lang="en" xml:lang="en"> 21064 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72172"></a>21067 <a xmlns="http://www.w3.org/1999/xhtml" id="id646308"></a> 21065 21068 <div class="header">Description:</div> 21066 21069 <p xmlns="http://www.w3.org/1999/xhtml">Waits until <em class="varname">semaphore</em> … … 21070 21073 </div> 21071 21074 <div class="refsect1" lang="en" xml:lang="en"> 21072 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72188"></a>21075 <a xmlns="http://www.w3.org/1999/xhtml" id="id646324"></a> 21073 21076 <div class="header">See Also:</div> 21074 21077 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_signal-semaphore" title="Function SIGNAL-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">signal-semaphore</b></a>, <a class="xref" href="#f_timed-wait-on-semaphore" title="Function TIMED-WAIT-ON-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">timed-wait-on-semaphore</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> 21075 21078 </div> 21076 21079 <div class="refsect1" lang="en" xml:lang="en"> 21077 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72248"></a>21080 <a xmlns="http://www.w3.org/1999/xhtml" id="id646383"></a> 21078 21081 <div class="header">Notes:</div> 21079 21082 <p xmlns="http://www.w3.org/1999/xhtml"><em class="varname">result</em> should probably be interpreted … … 21099 21102 <div> 21100 21103 <div class="refsect1" lang="en" xml:lang="en"> 21101 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72317"></a>21104 <a xmlns="http://www.w3.org/1999/xhtml" id="id646453"></a> 21102 21105 <div class="header">Arguments and Values:</div> 21103 21106 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">semaphore</span></i>---An object of type CCL:SEMAPHORE.</p> … … 21112 21115 </div> 21113 21116 <div class="refsect1" lang="en" xml:lang="en"> 21114 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72393"></a>21117 <a xmlns="http://www.w3.org/1999/xhtml" id="id646529"></a> 21115 21118 <div class="header">Description:</div> 21116 21119 <p xmlns="http://www.w3.org/1999/xhtml">Waits until <em class="varname">semaphore</em> … … 21121 21124 </div> 21122 21125 <div class="refsect1" lang="en" xml:lang="en"> 21123 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72413"></a>21126 <a xmlns="http://www.w3.org/1999/xhtml" id="id646548"></a> 21124 21127 <div class="header">See Also:</div> 21125 21128 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_wait-on-semaphore" title="Function WAIT-ON-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">wait-on-semaphore</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> … … 21141 21144 <div> 21142 21145 <div class="refsect1" lang="en" xml:lang="en"> 21143 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72518"></a>21146 <a xmlns="http://www.w3.org/1999/xhtml" id="id646654"></a> 21144 21147 <div class="header">Arguments and Values:</div> 21145 21148 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">fd</span></i>---a file descriptor, which is a non-negative integer … … 21149 21152 </div> 21150 21153 <div class="refsect1" lang="en" xml:lang="en"> 21151 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72566"></a>21154 <a xmlns="http://www.w3.org/1999/xhtml" id="id646701"></a> 21152 21155 <div class="header">Description:</div> 21153 21156 <p xmlns="http://www.w3.org/1999/xhtml">Wait until input is available on <em class="varname">fd</em>. … … 21165 21168 </div> 21166 21169 <div class="refsect1" lang="en" xml:lang="en"> 21167 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72603"></a>21170 <a xmlns="http://www.w3.org/1999/xhtml" id="id646738"></a> 21168 21171 <div class="header">See Also:</div> 21169 21172 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> 21170 21173 </div> 21171 21174 <div class="refsect1" lang="en" xml:lang="en"> 21172 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72645"></a>21175 <a xmlns="http://www.w3.org/1999/xhtml" id="id646780"></a> 21173 21176 <div class="header">Notes:</div> 21174 21177 <p xmlns="http://www.w3.org/1999/xhtml"> … … 21195 21198 <div> 21196 21199 <div class="refsect1" lang="en" xml:lang="en"> 21197 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72719"></a>21200 <a xmlns="http://www.w3.org/1999/xhtml" id="id646854"></a> 21198 21201 <div class="header">Arguments and Values:</div> 21199 21202 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">fd</span></i>---a file descriptor, which is a non-negative integer … … 21203 21206 </div> 21204 21207 <div class="refsect1" lang="en" xml:lang="en"> 21205 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72766"></a>21208 <a xmlns="http://www.w3.org/1999/xhtml" id="id646902"></a> 21206 21209 <div class="header">Description:</div> 21207 21210 <p xmlns="http://www.w3.org/1999/xhtml">Wait until output is possible on <em class="varname">fd</em> or until <em class="varname">timeout</em>, if … … 21216 21219 </div> 21217 21220 <div class="refsect1" lang="en" xml:lang="en"> 21218 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72803"></a>21221 <a xmlns="http://www.w3.org/1999/xhtml" id="id646939"></a> 21219 21222 <div class="header">See Also:</div> 21220 21223 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a></span> 21221 21224 </div> 21222 21225 <div class="refsect1" lang="en" xml:lang="en"> 21223 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72846"></a>21226 <a xmlns="http://www.w3.org/1999/xhtml" id="id646981"></a> 21224 21227 <div class="header">Notes:</div> 21225 21228 <p xmlns="http://www.w3.org/1999/xhtml"> … … 21246 21249 <div> 21247 21250 <div class="refsect1" lang="en" xml:lang="en"> 21248 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72920"></a>21251 <a xmlns="http://www.w3.org/1999/xhtml" id="id647055"></a> 21249 21252 <div class="header">Arguments and Values:</div> 21250 21253 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">body</span></i>---an implicit progn.</p> … … 21253 21256 </div> 21254 21257 <div class="refsect1" lang="en" xml:lang="en"> 21255 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72964"></a>21258 <a xmlns="http://www.w3.org/1999/xhtml" id="id647100"></a> 21256 21259 <div class="header">Description:</div> 21257 21260 <p xmlns="http://www.w3.org/1999/xhtml">Requests exclusive read access to the standard terminal … … 21261 21264 </div> 21262 21265 <div class="refsect1" lang="en" xml:lang="en"> 21263 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 72983"></a>21266 <a xmlns="http://www.w3.org/1999/xhtml" id="id647118"></a> 21264 21267 <div class="header">See Also:</div> 21265 21268 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#v_request-terminal-input-via-break" title="Variable *REQUEST-TERMINAL-INPUT-VIA-BREAK*"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">*request-terminal-input-via-break*</b></a>, <a class="xref" href="#cmd_y" title="Toplevel Command :Y"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">:y</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a></span> … … 21280 21283 <div> 21281 21284 <div class="refsect1" lang="en" xml:lang="en"> 21282 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73071"></a>21285 <a xmlns="http://www.w3.org/1999/xhtml" id="id647207"></a> 21283 21286 <div class="header">Value Type:</div> 21284 21287 <p xmlns="http://www.w3.org/1999/xhtml">A boolean.</p> 21285 21288 </div> 21286 21289 <div class="refsect1" lang="en" xml:lang="en"> 21287 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73082"></a>21290 <a xmlns="http://www.w3.org/1999/xhtml" id="id647218"></a> 21288 21291 <div class="header">Initial Value:</div> 21289 21292 <p xmlns="http://www.w3.org/1999/xhtml">NIL.</p> 21290 21293 </div> 21291 21294 <div class="refsect1" lang="en" xml:lang="en"> 21292 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73093"></a>21295 <a xmlns="http://www.w3.org/1999/xhtml" id="id647229"></a> 21293 21296 <div class="header">Description:</div> 21294 21297 <p xmlns="http://www.w3.org/1999/xhtml">Controls how attempts to obtain ownership of terminal input … … 21302 21305 </div> 21303 21306 <div class="refsect1" lang="en" xml:lang="en"> 21304 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73108"></a>21307 <a xmlns="http://www.w3.org/1999/xhtml" id="id647244"></a> 21305 21308 <div class="header">See Also:</div> 21306 21309 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a>, <a class="xref" href="#cmd_y" title="Toplevel Command :Y"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">:y</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a></span> … … 21321 21324 <div> 21322 21325 <div class="refsect1" lang="en" xml:lang="en"> 21323 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73212"></a>21326 <a xmlns="http://www.w3.org/1999/xhtml" id="id647347"></a> 21324 21327 <div class="header">Arguments and Values:</div> 21325 21328 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">p</span></i>---a lisp process (thread), designated either by … … 21330 21333 </div> 21331 21334 <div class="refsect1" lang="en" xml:lang="en"> 21332 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73256"></a>21335 <a xmlns="http://www.w3.org/1999/xhtml" id="id647392"></a> 21333 21336 <div class="header">Description:</div> 21334 21337 <p xmlns="http://www.w3.org/1999/xhtml">:Y is a toplevel command, not a function. As such, it … … 21341 21344 </div> 21342 21345 <div class="refsect1" lang="en" xml:lang="en"> 21343 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73281"></a>21346 <a xmlns="http://www.w3.org/1999/xhtml" id="id647417"></a> 21344 21347 <div class="header">See Also:</div> 21345 21348 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#m_with-terminal-input" title="Macro WITH-TERMINAL-INPUT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">with-terminal-input</b></a>, <a class="xref" href="#v_request-terminal-input-via-break" title="Variable *REQUEST-TERMINAL-INPUT-VIA-BREAK*"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">*request-terminal-input-via-break*</b></a>, <a class="xref" href="#f_make-lock" title="Function MAKE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-lock</b></a>, <a class="xref" href="#f_make-read-write-lock" title="Function MAKE-READ-WRITE-LOCK"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-read-write-lock</b></a>, <a class="xref" href="#f_make-semaphore" title="Function MAKE-SEMAPHORE"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-semaphore</b></a>, <a class="xref" href="#f_process-input-wait" title="Function PROCESS-INPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-input-wait</b></a>, <a class="xref" href="#f_process-output-wait" title="Function PROCESS-OUTPUT-WAIT"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-output-wait</b></a></span> … … 21362 21365 <div> 21363 21366 <div class="refsect1" lang="en" xml:lang="en"> 21364 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73387"></a>21367 <a xmlns="http://www.w3.org/1999/xhtml" id="id647522"></a> 21365 21368 <div class="header">Arguments and Values:</div> 21366 21369 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">process</span></i>---a process, typically created by <a xmlns="http://www.w3.org/1999/xhtml" class="xref" href="#f_process-run-function" title="Function PROCESS-RUN-FUNCTION"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">process-run-function</b></a> or by <a xmlns="http://www.w3.org/1999/xhtml" class="xref" href="#f_make-process" title="Function MAKE-PROCESS"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">make-process</b></a></p> … … 21372 21375 </div> 21373 21376 <div class="refsect1" lang="en" xml:lang="en"> 21374 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73453"></a>21377 <a xmlns="http://www.w3.org/1999/xhtml" id="id647588"></a> 21375 21378 <div class="header">Description:</div> 21376 21379 <p xmlns="http://www.w3.org/1999/xhtml">Waits for the specified process to terminate. If the … … 21513 21516 <div> 21514 21517 <div class="refsect1" lang="en" xml:lang="en"> 21515 <a xmlns="http://www.w3.org/1999/xhtml" id="id 655616"></a>21518 <a xmlns="http://www.w3.org/1999/xhtml" id="id576476"></a> 21516 21519 <div class="header">Arguments and Values:</div> 21517 21520 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">address-family</span></i>---The address/protocol family of this socket. Currently … … 21613 21616 </div> 21614 21617 <div class="refsect1" lang="en" xml:lang="en"> 21615 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 36341"></a>21618 <a xmlns="http://www.w3.org/1999/xhtml" id="id616842"></a> 21616 21619 <div class="header">Description:</div> 21617 21620 <p xmlns="http://www.w3.org/1999/xhtml">Creates and returns a new socket</p> … … 21632 21635 <div> 21633 21636 <div class="refsect1" lang="en" xml:lang="en"> 21634 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 36403"></a>21637 <a xmlns="http://www.w3.org/1999/xhtml" id="id653367"></a> 21635 21638 <div class="header">Arguments and Values:</div> 21636 21639 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The listener-socket to listen on.</p> … … 21640 21643 </div> 21641 21644 <div class="refsect1" lang="en" xml:lang="en"> 21642 <a xmlns="http://www.w3.org/1999/xhtml" id="id 597118"></a>21645 <a xmlns="http://www.w3.org/1999/xhtml" id="id653410"></a> 21643 21646 <div class="header">Description:</div> 21644 21647 <p xmlns="http://www.w3.org/1999/xhtml">Extracts the first connection on the queue of pending … … 21666 21669 <div> 21667 21670 <div class="refsect1" lang="en" xml:lang="en"> 21668 <a xmlns="http://www.w3.org/1999/xhtml" id="id 597183"></a>21671 <a xmlns="http://www.w3.org/1999/xhtml" id="id612169"></a> 21669 21672 <div class="header">Arguments and Values:</div> 21670 21673 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">dotted</span></i>---A string representing an IP address in the … … 21674 21677 </div> 21675 21678 <div class="refsect1" lang="en" xml:lang="en"> 21676 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 78380"></a>21679 <a xmlns="http://www.w3.org/1999/xhtml" id="id612210"></a> 21677 21680 <div class="header">Description:</div> 21678 21681 <p xmlns="http://www.w3.org/1999/xhtml">Converts a dotted-string representation of a host address to … … 21694 21697 <div> 21695 21698 <div class="refsect1" lang="en" xml:lang="en"> 21696 <a xmlns="http://www.w3.org/1999/xhtml" id="id 678442"></a>21699 <a xmlns="http://www.w3.org/1999/xhtml" id="id592352"></a> 21697 21700 <div class="header">Arguments and Values:</div> 21698 21701 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">ipaddr</span></i>---A 32-bit integer representing an internet host address</p> … … 21703 21706 </div> 21704 21707 <div class="refsect1" lang="en" xml:lang="en"> 21705 <a xmlns="http://www.w3.org/1999/xhtml" id="id 679685"></a>21708 <a xmlns="http://www.w3.org/1999/xhtml" id="id592394"></a> 21706 21709 <div class="header">Description:</div> 21707 21710 <p xmlns="http://www.w3.org/1999/xhtml">Converts a 32-bit unsigned IP address into octets.</p> … … 21722 21725 <div> 21723 21726 <div class="refsect1" lang="en" xml:lang="en"> 21724 <a xmlns="http://www.w3.org/1999/xhtml" id="id 679746"></a>21727 <a xmlns="http://www.w3.org/1999/xhtml" id="id594588"></a> 21725 21728 <div class="header">Arguments and Values:</div> 21726 21729 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">ipaddr</span></i>---a 32-bit integer representing an internet host address</p> … … 21729 21732 </div> 21730 21733 <div class="refsect1" lang="en" xml:lang="en"> 21731 <a xmlns="http://www.w3.org/1999/xhtml" id="id 679786"></a>21734 <a xmlns="http://www.w3.org/1999/xhtml" id="id594628"></a> 21732 21735 <div class="header">Description:</div> 21733 21736 <p xmlns="http://www.w3.org/1999/xhtml">Converts a 32-bit unsigned IP address into a host name … … 21749 21752 <div> 21750 21753 <div class="refsect1" lang="en" xml:lang="en"> 21751 <a xmlns="http://www.w3.org/1999/xhtml" id="id 669004"></a>21754 <a xmlns="http://www.w3.org/1999/xhtml" id="id594686"></a> 21752 21755 <div class="header">Arguments and Values:</div> 21753 21756 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">host</span></i>---Specifies the host. It can be either a host name … … 21757 21760 </div> 21758 21761 <div class="refsect1" lang="en" xml:lang="en"> 21759 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 69032"></a>21762 <a xmlns="http://www.w3.org/1999/xhtml" id="id652519"></a> 21760 21763 <div class="header">Description:</div> 21761 21764 <p xmlns="http://www.w3.org/1999/xhtml">Converts a host spec in any of the acceptable formats into a … … 21777 21780 <div> 21778 21781 <div class="refsect1" lang="en" xml:lang="en"> 21779 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 23607"></a>21782 <a xmlns="http://www.w3.org/1999/xhtml" id="id652578"></a> 21780 21783 <div class="header">Arguments and Values:</div> 21781 21784 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">port</span></i>---Specifies the port. It can be either a string, such as … … 21786 21789 </div> 21787 21790 <div class="refsect1" lang="en" xml:lang="en"> 21788 <a xmlns="http://www.w3.org/1999/xhtml" id="id 623649"></a>21791 <a xmlns="http://www.w3.org/1999/xhtml" id="id573536"></a> 21789 21792 <div class="header">Description:</div> 21790 21793 <p xmlns="http://www.w3.org/1999/xhtml">Finds the port number for the specified port and protocol</p> … … 21806 21809 <div> 21807 21810 <div class="refsect1" lang="en" xml:lang="en"> 21808 <a xmlns="http://www.w3.org/1999/xhtml" id="id 623710"></a>21811 <a xmlns="http://www.w3.org/1999/xhtml" id="id573597"></a> 21809 21812 <div class="header">Arguments and Values:</div> 21810 21813 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket to read from</p> … … 21823 21826 </div> 21824 21827 <div class="refsect1" lang="en" xml:lang="en"> 21825 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 42972"></a>21828 <a xmlns="http://www.w3.org/1999/xhtml" id="id653856"></a> 21826 21829 <div class="header">Description:</div> 21827 21830 <p xmlns="http://www.w3.org/1999/xhtml">Reads a UDP packet from a socket. If no packets are … … 21860 21863 <div> 21861 21864 <div class="refsect1" lang="en" xml:lang="en"> 21862 <a xmlns="http://www.w3.org/1999/xhtml" id="id 679545"></a>21865 <a xmlns="http://www.w3.org/1999/xhtml" id="id593066"></a> 21863 21866 <div class="header">Arguments and Values:</div> 21864 21867 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket to write to</p> … … 21875 21878 </div> 21876 21879 <div class="refsect1" lang="en" xml:lang="en"> 21877 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 45451"></a>21880 <a xmlns="http://www.w3.org/1999/xhtml" id="id602908"></a> 21878 21881 <div class="header">Description:</div> 21879 21882 <p xmlns="http://www.w3.org/1999/xhtml">Send a UDP packet over a socket.</p> … … 21894 21897 <div> 21895 21898 <div class="refsect1" lang="en" xml:lang="en"> 21896 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 45513"></a>21899 <a xmlns="http://www.w3.org/1999/xhtml" id="id602969"></a> 21897 21900 <div class="header">Arguments and Values:</div> 21898 21901 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket to shut down (typically a tcp-stream)</p> … … 21901 21904 </div> 21902 21905 <div class="refsect1" lang="en" xml:lang="en"> 21903 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 14874"></a>21906 <a xmlns="http://www.w3.org/1999/xhtml" id="id603010"></a> 21904 21907 <div class="header">Description:</div> 21905 21908 <p xmlns="http://www.w3.org/1999/xhtml">Shuts down part of a bidirectional connection. This is … … 21922 21925 <div> 21923 21926 <div class="refsect1" lang="en" xml:lang="en"> 21924 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 14933"></a>21927 <a xmlns="http://www.w3.org/1999/xhtml" id="id643182"></a> 21925 21928 <div class="header">Arguments and Values:</div> 21926 21929 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 21927 21930 </div> 21928 21931 <div class="refsect1" lang="en" xml:lang="en"> 21929 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 14959"></a>21932 <a xmlns="http://www.w3.org/1999/xhtml" id="id643208"></a> 21930 21933 <div class="header">Description:</div> 21931 21934 <p xmlns="http://www.w3.org/1999/xhtml">Returns the native OS's representation of the socket, or … … 21952 21955 <div> 21953 21956 <div class="refsect1" lang="en" xml:lang="en"> 21954 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 25537"></a>21957 <a xmlns="http://www.w3.org/1999/xhtml" id="id653635"></a> 21955 21958 <div class="header">Arguments and Values:</div> 21956 21959 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 21957 21960 </div> 21958 21961 <div class="refsect1" lang="en" xml:lang="en"> 21959 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 25564"></a>21962 <a xmlns="http://www.w3.org/1999/xhtml" id="id653661"></a> 21960 21963 <div class="header">Description:</div> 21961 21964 <p xmlns="http://www.w3.org/1999/xhtml">Returns the 32-bit unsigned IP address of the remote host, … … 21977 21980 <div> 21978 21981 <div class="refsect1" lang="en" xml:lang="en"> 21979 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 02968"></a>21982 <a xmlns="http://www.w3.org/1999/xhtml" id="id653719"></a> 21980 21983 <div class="header">Arguments and Values:</div> 21981 21984 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 21982 21985 </div> 21983 21986 <div class="refsect1" lang="en" xml:lang="en"> 21984 <a xmlns="http://www.w3.org/1999/xhtml" id="id60 2994"></a>21987 <a xmlns="http://www.w3.org/1999/xhtml" id="id601347"></a> 21985 21988 <div class="header">Description:</div> 21986 21989 <p xmlns="http://www.w3.org/1999/xhtml">Returns the remote port number, or NIL if the socket is not … … 22002 22005 <div> 22003 22006 <div class="refsect1" lang="en" xml:lang="en"> 22004 <a xmlns="http://www.w3.org/1999/xhtml" id="id60 3051"></a>22007 <a xmlns="http://www.w3.org/1999/xhtml" id="id601405"></a> 22005 22008 <div class="header">Arguments and Values:</div> 22006 22009 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 22007 22010 </div> 22008 22011 <div class="refsect1" lang="en" xml:lang="en"> 22009 <a xmlns="http://www.w3.org/1999/xhtml" id="id60 3078"></a>22012 <a xmlns="http://www.w3.org/1999/xhtml" id="id601431"></a> 22010 22013 <div class="header">Description:</div> 22011 22014 <p xmlns="http://www.w3.org/1999/xhtml">Returns 32-bit unsigned IP address of the local host.</p> … … 22026 22029 <div> 22027 22030 <div class="refsect1" lang="en" xml:lang="en"> 22028 <a xmlns="http://www.w3.org/1999/xhtml" id="id 618206"></a>22031 <a xmlns="http://www.w3.org/1999/xhtml" id="id578485"></a> 22029 22032 <div class="header">Arguments and Values:</div> 22030 22033 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 22031 22034 </div> 22032 22035 <div class="refsect1" lang="en" xml:lang="en"> 22033 <a xmlns="http://www.w3.org/1999/xhtml" id="id 618232"></a>22036 <a xmlns="http://www.w3.org/1999/xhtml" id="id578511"></a> 22034 22037 <div class="header">Description:</div> 22035 22038 <p xmlns="http://www.w3.org/1999/xhtml">Returns the local port number</p> … … 22050 22053 <div> 22051 22054 <div class="refsect1" lang="en" xml:lang="en"> 22052 <a xmlns="http://www.w3.org/1999/xhtml" id="id 618289"></a>22055 <a xmlns="http://www.w3.org/1999/xhtml" id="id578568"></a> 22053 22056 <div class="header">Arguments and Values:</div> 22054 22057 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 22055 22058 </div> 22056 22059 <div class="refsect1" lang="en" xml:lang="en"> 22057 <a xmlns="http://www.w3.org/1999/xhtml" id="id 668824"></a>22060 <a xmlns="http://www.w3.org/1999/xhtml" id="id582753"></a> 22058 22061 <div class="header">Description:</div> 22059 22062 <p xmlns="http://www.w3.org/1999/xhtml">Returns :internet or :file, as appropriate.</p> … … 22074 22077 <div> 22075 22078 <div class="refsect1" lang="en" xml:lang="en"> 22076 <a xmlns="http://www.w3.org/1999/xhtml" id="id 668882"></a>22079 <a xmlns="http://www.w3.org/1999/xhtml" id="id582810"></a> 22077 22080 <div class="header">Arguments and Values:</div> 22078 22081 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 22079 22082 </div> 22080 22083 <div class="refsect1" lang="en" xml:lang="en"> 22081 <a xmlns="http://www.w3.org/1999/xhtml" id="id 668908"></a>22084 <a xmlns="http://www.w3.org/1999/xhtml" id="id582836"></a> 22082 22085 <div class="header">Description:</div> 22083 22086 <p xmlns="http://www.w3.org/1999/xhtml">Returns :active for tcp-stream, :passive for … … 22099 22102 <div> 22100 22103 <div class="refsect1" lang="en" xml:lang="en"> 22101 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 14000"></a>22104 <a xmlns="http://www.w3.org/1999/xhtml" id="id654322"></a> 22102 22105 <div class="header">Arguments and Values:</div> 22103 22106 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 22104 22107 </div> 22105 22108 <div class="refsect1" lang="en" xml:lang="en"> 22106 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 14026"></a>22109 <a xmlns="http://www.w3.org/1999/xhtml" id="id654348"></a> 22107 22110 <div class="header">Description:</div> 22108 22111 <p xmlns="http://www.w3.org/1999/xhtml">Returns the socket format as specified by the :format … … 22124 22127 <div> 22125 22128 <div class="refsect1" lang="en" xml:lang="en"> 22126 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 14084"></a>22129 <a xmlns="http://www.w3.org/1999/xhtml" id="id654405"></a> 22127 22130 <div class="header">Arguments and Values:</div> 22128 22131 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket</p> 22129 22132 </div> 22130 22133 <div class="refsect1" lang="en" xml:lang="en"> 22131 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 14110"></a>22134 <a xmlns="http://www.w3.org/1999/xhtml" id="id654431"></a> 22132 22135 <div class="header">Description:</div> 22133 22136 <p xmlns="http://www.w3.org/1999/xhtml">returns :stream for tcp-stream and listener-socket, and … … 22148 22151 <div> 22149 22152 <div class="refsect1" lang="en" xml:lang="en"> 22150 <a xmlns="http://www.w3.org/1999/xhtml" id="id 678672"></a>22153 <a xmlns="http://www.w3.org/1999/xhtml" id="id587920"></a> 22151 22154 <div class="header">Description:</div> 22152 22155 <p xmlns="http://www.w3.org/1999/xhtml">The class of OS errors signaled by socket functions</p> 22153 22156 </div> 22154 22157 <div class="refsect1" lang="en" xml:lang="en"> 22155 <a xmlns="http://www.w3.org/1999/xhtml" id="id 678683"></a>22158 <a xmlns="http://www.w3.org/1999/xhtml" id="id587930"></a> 22156 22159 <div class="header">Superclasses:</div> 22157 22160 <p xmlns="http://www.w3.org/1999/xhtml">simple-error</p> … … 22172 22175 <div> 22173 22176 <div class="refsect1" lang="en" xml:lang="en"> 22174 <a xmlns="http://www.w3.org/1999/xhtml" id="id 678740"></a>22177 <a xmlns="http://www.w3.org/1999/xhtml" id="id587988"></a> 22175 22178 <div class="header">Arguments and Values:</div> 22176 22179 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket-error</span></i>---the condition</p> 22177 22180 </div> 22178 22181 <div class="refsect1" lang="en" xml:lang="en"> 22179 <a xmlns="http://www.w3.org/1999/xhtml" id="id 678766"></a>22182 <a xmlns="http://www.w3.org/1999/xhtml" id="id588014"></a> 22180 22183 <div class="header">Description:</div> 22181 22184 <p xmlns="http://www.w3.org/1999/xhtml">The OS error code of the error</p> … … 22196 22199 <div> 22197 22200 <div class="refsect1" lang="en" xml:lang="en"> 22198 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80543"></a>22201 <a xmlns="http://www.w3.org/1999/xhtml" id="id643032"></a> 22199 22202 <div class="header">Arguments and Values:</div> 22200 22203 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket-error</span></i>---the condition</p> 22201 22204 </div> 22202 22205 <div class="refsect1" lang="en" xml:lang="en"> 22203 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80570"></a>22206 <a xmlns="http://www.w3.org/1999/xhtml" id="id643058"></a> 22204 22207 <div class="header">Description:</div> 22205 22208 <p xmlns="http://www.w3.org/1999/xhtml">A symbol representing the error code in a more … … 22225 22228 <div> 22226 22229 <div class="refsect1" lang="en" xml:lang="en"> 22227 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80633"></a>22230 <a xmlns="http://www.w3.org/1999/xhtml" id="id617836"></a> 22228 22231 <div class="header">Arguments and Values:</div> 22229 22232 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket-error</span></i>---the condition</p> 22230 22233 </div> 22231 22234 <div class="refsect1" lang="en" xml:lang="en"> 22232 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80178"></a>22235 <a xmlns="http://www.w3.org/1999/xhtml" id="id617862"></a> 22233 22236 <div class="header">Description:</div> 22234 22237 <p xmlns="http://www.w3.org/1999/xhtml">A string describing the context where the error happened. On … … 22251 22254 <div> 22252 22255 <div class="refsect1" lang="en" xml:lang="en"> 22253 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80239"></a>22256 <a xmlns="http://www.w3.org/1999/xhtml" id="id617923"></a> 22254 22257 <div class="header">Arguments and Values:</div> 22255 22258 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">socket</span></i>---The socket to close</p> … … 22262 22265 </div> 22263 22266 <div class="refsect1" lang="en" xml:lang="en"> 22264 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80282"></a>22267 <a xmlns="http://www.w3.org/1999/xhtml" id="id617967"></a> 22265 22268 <div class="header">Description:</div> 22266 22269 <p xmlns="http://www.w3.org/1999/xhtml">The close generic function can be applied to sockets. It … … 22283 22286 <div> 22284 22287 <div class="refsect1" lang="en" xml:lang="en"> 22285 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80666"></a>22288 <a xmlns="http://www.w3.org/1999/xhtml" id="id654849"></a> 22286 22289 <div class="header">Arguments and Values:</div> 22287 22290 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">var</span></i>---variable to bind</p> … … 22290 22293 </div> 22291 22294 <div class="refsect1" lang="en" xml:lang="en"> 22292 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 80722"></a>22295 <a xmlns="http://www.w3.org/1999/xhtml" id="id654904"></a> 22293 22296 <div class="header">Description:</div> 22294 22297 <p xmlns="http://www.w3.org/1999/xhtml">executes body with var bound to the result of applying … … 22422 22425 <div> 22423 22426 <div class="refsect1" lang="en" xml:lang="en"> 22424 <a xmlns="http://www.w3.org/1999/xhtml" id="id5 96774"></a>22427 <a xmlns="http://www.w3.org/1999/xhtml" id="id574374"></a> 22425 22428 <div class="header">Arguments and Values:</div> 22426 22429 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">program</span></i>---A string or pathname which denotes an executable file. … … 22473 22476 </div> 22474 22477 <div class="refsect1" lang="en" xml:lang="en"> 22475 <a xmlns="http://www.w3.org/1999/xhtml" id="id 609086"></a>22478 <a xmlns="http://www.w3.org/1999/xhtml" id="id586656"></a> 22476 22479 <div class="header">Description:</div> 22477 22480 <p xmlns="http://www.w3.org/1999/xhtml">Runs the specified program in an external (Unix) process, … … 22493 22496 <div> 22494 22497 <div class="refsect1" lang="en" xml:lang="en"> 22495 <a xmlns="http://www.w3.org/1999/xhtml" id="id 609145"></a>22498 <a xmlns="http://www.w3.org/1999/xhtml" id="id581235"></a> 22496 22499 <div class="header">Arguments and Values:</div> 22497 22500 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">proc</span></i>---An EXTERNAL-PROCESS, as returned by RUN-PROGRAM.</p> … … 22499 22502 </div> 22500 22503 <div class="refsect1" lang="en" xml:lang="en"> 22501 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 27159"></a>22504 <a xmlns="http://www.w3.org/1999/xhtml" id="id600176"></a> 22502 22505 <div class="header">Description:</div> 22503 22506 <p xmlns="http://www.w3.org/1999/xhtml">Sends the specified "signal" to the specified … … 22522 22525 <div> 22523 22526 <div class="refsect1" lang="en" xml:lang="en"> 22524 <a xmlns="http://www.w3.org/1999/xhtml" id="id 599721"></a>22527 <a xmlns="http://www.w3.org/1999/xhtml" id="id600238"></a> 22525 22528 <div class="header">Arguments and Values:</div> 22526 22529 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">proc</span></i>---An EXTERNAL-PROCESS, as returned by RUN-PROGRAM.</p> 22527 22530 </div> 22528 22531 <div class="refsect1" lang="en" xml:lang="en"> 22529 <a xmlns="http://www.w3.org/1999/xhtml" id="id 599747"></a>22532 <a xmlns="http://www.w3.org/1999/xhtml" id="id616358"></a> 22530 22533 <div class="header">Description:</div> 22531 22534 <p xmlns="http://www.w3.org/1999/xhtml">Returns the <span class="emphasis"><em>process id</em></span> assigned to … … 22549 22552 <div> 22550 22553 <div class="refsect1" lang="en" xml:lang="en"> 22551 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 28947"></a>22554 <a xmlns="http://www.w3.org/1999/xhtml" id="id616422"></a> 22552 22555 <div class="header">Arguments and Values:</div> 22553 22556 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">proc</span></i>---An EXTERNAL-PROCESS, as returned by RUN-PROGRAM.</p> 22554 22557 </div> 22555 22558 <div class="refsect1" lang="en" xml:lang="en"> 22556 <a xmlns="http://www.w3.org/1999/xhtml" id="id 628973"></a>22559 <a xmlns="http://www.w3.org/1999/xhtml" id="id574409"></a> 22557 22560 <div class="header">Description:</div> 22558 22561 <p xmlns="http://www.w3.org/1999/xhtml">Returns the stream created when the input argument to … … 22575 22578 <div> 22576 22579 <div class="refsect1" lang="en" xml:lang="en"> 22577 <a xmlns="http://www.w3.org/1999/xhtml" id="id 655267"></a>22580 <a xmlns="http://www.w3.org/1999/xhtml" id="id574470"></a> 22578 22581 <div class="header">Arguments and Values:</div> 22579 22582 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">proc</span></i>---An EXTERNAL-PROCESS, as returned by RUN-PROGRAM.</p> 22580 22583 </div> 22581 22584 <div class="refsect1" lang="en" xml:lang="en"> 22582 <a xmlns="http://www.w3.org/1999/xhtml" id="id 655293"></a>22585 <a xmlns="http://www.w3.org/1999/xhtml" id="id597694"></a> 22583 22586 <div class="header">Description:</div> 22584 22587 <p xmlns="http://www.w3.org/1999/xhtml">Returns the stream created when the output argument to … … 22602 22605 <div> 22603 22606 <div class="refsect1" lang="en" xml:lang="en"> 22604 <a xmlns="http://www.w3.org/1999/xhtml" id="id 644353"></a>22607 <a xmlns="http://www.w3.org/1999/xhtml" id="id597755"></a> 22605 22608 <div class="header">Arguments and Values:</div> 22606 22609 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">proc</span></i>---An EXTERNAL-PROCESS, as returned by RUN-PROGRAM.</p> 22607 22610 </div> 22608 22611 <div class="refsect1" lang="en" xml:lang="en"> 22609 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 44379"></a>22612 <a xmlns="http://www.w3.org/1999/xhtml" id="id617295"></a> 22610 22613 <div class="header">Description:</div> 22611 22614 <p xmlns="http://www.w3.org/1999/xhtml">Returns the stream created when the error argument to … … 22629 22632 <div> 22630 22633 <div class="refsect1" lang="en" xml:lang="en"> 22631 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 44440"></a>22634 <a xmlns="http://www.w3.org/1999/xhtml" id="id617356"></a> 22632 22635 <div class="header">Arguments and Values:</div> 22633 22636 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">proc</span></i>---An EXTERNAL-PROCESS, as returned by RUN-PROGRAM.</p> 22634 22637 </div> 22635 22638 <div class="refsect1" lang="en" xml:lang="en"> 22636 <a xmlns="http://www.w3.org/1999/xhtml" id="id 629606"></a>22639 <a xmlns="http://www.w3.org/1999/xhtml" id="id579263"></a> 22637 22640 <div class="header">Description:</div> 22638 22641 <p xmlns="http://www.w3.org/1999/xhtml">Returns, as multiple values, a keyword denoting the status … … 22664 22667 <dt> 22665 22668 <span class="sect2"> 22666 <a href="#id60 1913">10.1.1. Stream External Format</a>22669 <a href="#id604898">10.1.1. Stream External Format</a> 22667 22670 </span> 22668 22671 </dt> … … 22732 22735 <div> 22733 22736 <div> 22734 <h3 class="title"><a id="id60 1913"></a>10.1.1. Stream External Format</h3>22737 <h3 class="title"><a id="id604898"></a>10.1.1. Stream External Format</h3> 22735 22738 </div> 22736 22739 </div> … … 22895 22898 </div> 22896 22899 </div> 22897 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68707" class="indexterm"></a>22898 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68716" class="indexterm"></a>22899 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68726" class="indexterm"></a>22900 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68736" class="indexterm"></a>22901 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68746" class="indexterm"></a>22902 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 69308" class="indexterm"></a>22900 <a xmlns="http://www.w3.org/1999/xhtml" id="id654199" class="indexterm"></a> 22901 <a xmlns="http://www.w3.org/1999/xhtml" id="id654209" class="indexterm"></a> 22902 <a xmlns="http://www.w3.org/1999/xhtml" id="id654218" class="indexterm"></a> 22903 <a xmlns="http://www.w3.org/1999/xhtml" id="id654228" class="indexterm"></a> 22904 <a xmlns="http://www.w3.org/1999/xhtml" id="id638604" class="indexterm"></a> 22905 <a xmlns="http://www.w3.org/1999/xhtml" id="id638614" class="indexterm"></a> 22903 22906 <p xmlns="http://www.w3.org/1999/xhtml">A stream that is associated with a file descriptor has 22904 22907 attributes and accessors: … … 22953 22956 <div> 22954 22957 <div class="refsect1" lang="en" xml:lang="en"> 22955 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 69473"></a>22958 <a xmlns="http://www.w3.org/1999/xhtml" id="id638779"></a> 22956 22959 <div class="header">Values:</div> 22957 22960 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">stream-list</span></i>---A list of open file streams. This is a copy of … … 22960 22963 </div> 22961 22964 <div class="refsect1" lang="en" xml:lang="en"> 22962 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 69500"></a>22965 <a xmlns="http://www.w3.org/1999/xhtml" id="id638806"></a> 22963 22966 <div class="header">Description:</div> 22964 22967 <p xmlns="http://www.w3.org/1999/xhtml">Returns a list of open file streams.</p> 22965 22968 </div> 22966 22969 <div class="refsect1" lang="en" xml:lang="en"> 22967 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 69511"></a>22970 <a xmlns="http://www.w3.org/1999/xhtml" id="id638817"></a> 22968 22971 <div class="header">See Also:</div> 22969 22972 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_note-open-file-stream" title="Function NOTE-OPEN-FILE-STREAM"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">note-open-file-stream</b></a>, <a class="xref" href="#f_remove-open-file-stream" title="Function REMOVE-OPEN-FILE-STREAM"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">remove-open-file-stream</b></a></span> … … 22988 22991 <div> 22989 22992 <div class="refsect1" lang="en" xml:lang="en"> 22990 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 69592"></a>22993 <a xmlns="http://www.w3.org/1999/xhtml" id="id643481"></a> 22991 22994 <div class="header">Arguments:</div> 22992 22995 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">file-stream</span></i>---A file stream.</p> 22993 22996 </div> 22994 22997 <div class="refsect1" lang="en" xml:lang="en"> 22995 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 69618"></a>22998 <a xmlns="http://www.w3.org/1999/xhtml" id="id643507"></a> 22996 22999 <div class="header">Description:</div> 22997 23000 <p xmlns="http://www.w3.org/1999/xhtml">Adds a file stream to the internal list of open … … 23002 23005 </div> 23003 23006 <div class="refsect1" lang="en" xml:lang="en"> 23004 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64395"></a>23007 <a xmlns="http://www.w3.org/1999/xhtml" id="id643526"></a> 23005 23008 <div class="header">See Also:</div> 23006 23009 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_open-file-streams" title="Function OPEN-FILE-STREAMS"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">open-file-streams</b></a>, <a class="xref" href="#f_remove-open-file-stream" title="Function REMOVE-OPEN-FILE-STREAM"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">remove-open-file-stream</b></a></span> … … 23025 23028 <div> 23026 23029 <div class="refsect1" lang="en" xml:lang="en"> 23027 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64476"></a>23030 <a xmlns="http://www.w3.org/1999/xhtml" id="id643607"></a> 23028 23031 <div class="header">Arguments:</div> 23029 23032 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">file-stream</span></i>---A file stream.</p> 23030 23033 </div> 23031 23034 <div class="refsect1" lang="en" xml:lang="en"> 23032 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64502"></a>23035 <a xmlns="http://www.w3.org/1999/xhtml" id="id643633"></a> 23033 23036 <div class="header">Description:</div> 23034 23037 <p xmlns="http://www.w3.org/1999/xhtml">Remove file stream from the internal list of open file … … 23039 23042 </div> 23040 23043 <div class="refsect1" lang="en" xml:lang="en"> 23041 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 64521"></a>23044 <a xmlns="http://www.w3.org/1999/xhtml" id="id643652"></a> 23042 23045 <div class="header">See Also:</div> 23043 23046 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"><a class="xref" href="#f_open-file-streams" title="Function OPEN-FILE-STREAMS"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">open-file-streams</b></a>, <a class="xref" href="#f_note-open-file-stream" title="Function NOTE-OPEN-FILE-STREAM"><b xmlns="http://www.w3.org/TR/xhtml1/transitional">note-open-file-stream</b></a></span> … … 23472 23475 <div> 23473 23476 <div class="refsect1" lang="en" xml:lang="en"> 23474 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68030"></a>23477 <a xmlns="http://www.w3.org/1999/xhtml" id="id642216"></a> 23475 23478 <div class="header">Arguments and Values:</div> 23476 23479 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">stream</span></i>---a stream, presumably a fundamental-input-stream.</p> … … 23483 23486 </div> 23484 23487 <div class="refsect1" lang="en" xml:lang="en"> 23485 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68088"></a>23488 <a xmlns="http://www.w3.org/1999/xhtml" id="id642274"></a> 23486 23489 <div class="header">Description:</div> 23487 23490 <p xmlns="http://www.w3.org/1999/xhtml">Should try to read up to count elements from stream into the … … 23504 23507 <div> 23505 23508 <div class="refsect1" lang="en" xml:lang="en"> 23506 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68147"></a>23509 <a xmlns="http://www.w3.org/1999/xhtml" id="id642333"></a> 23507 23510 <div class="header">Arguments and Values:</div> 23508 23511 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">stream</span></i>---a stream, presumably a fundamental-output-stream.</p> … … 23515 23518 </div> 23516 23519 <div class="refsect1" lang="en" xml:lang="en"> 23517 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68206"></a>23520 <a xmlns="http://www.w3.org/1999/xhtml" id="id642392"></a> 23518 23521 <div class="header">Description:</div> 23519 23522 <p xmlns="http://www.w3.org/1999/xhtml">should try to write the first count elements of list to … … 23535 23538 <div> 23536 23539 <div class="refsect1" lang="en" xml:lang="en"> 23537 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68264"></a>23540 <a xmlns="http://www.w3.org/1999/xhtml" id="id642450"></a> 23538 23541 <div class="header">Arguments and Values:</div> 23539 23542 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">stream</span></i>---a stream, presumably a fundamental-input-stream</p> … … 23551 23554 </div> 23552 23555 <div class="refsect1" lang="en" xml:lang="en"> 23553 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68339"></a>23556 <a xmlns="http://www.w3.org/1999/xhtml" id="id642525"></a> 23554 23557 <div class="header">Description:</div> 23555 23558 <p xmlns="http://www.w3.org/1999/xhtml">should try to read successive elements from stream into … … 23574 23577 <div> 23575 23578 <div class="refsect1" lang="en" xml:lang="en"> 23576 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68399"></a>23579 <a xmlns="http://www.w3.org/1999/xhtml" id="id642585"></a> 23577 23580 <div class="header">Arguments and Values:</div> 23578 23581 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">stream</span></i>---a stream, presumably a fundamental-output-stream</p> … … 23590 23593 </div> 23591 23594 <div class="refsect1" lang="en" xml:lang="en"> 23592 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68475"></a>23595 <a xmlns="http://www.w3.org/1999/xhtml" id="id642661"></a> 23593 23596 <div class="header">Description:</div> 23594 23597 <p xmlns="http://www.w3.org/1999/xhtml">should try to write successive elements of vector to stream, … … 23612 23615 <div> 23613 23616 <div class="refsect1" lang="en" xml:lang="en"> 23614 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68534"></a>23617 <a xmlns="http://www.w3.org/1999/xhtml" id="id642720"></a> 23615 23618 <div class="header">Method Signatures:</div> 23616 23619 <div class="synopsis"><span xmlns="http://www.w3.org/1999/xhtml" class="function"><strong>ccl::stream-device</strong></span> <i> … … 23618 23621 </div> 23619 23622 <div class="refsect1" lang="en" xml:lang="en"> 23620 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 68553"></a>23623 <a xmlns="http://www.w3.org/1999/xhtml" id="id642739"></a> 23621 23624 <div class="header">Arguments and Values:</div> 23622 23625 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">s</span></i>---a stream.</p> … … 23629 23632 </div> 23630 23633 <div class="refsect1" lang="en" xml:lang="en"> 23631 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 76361"></a>23634 <a xmlns="http://www.w3.org/1999/xhtml" id="id650496"></a> 23632 23635 <div class="header">Description:</div> 23633 23636 <p xmlns="http://www.w3.org/1999/xhtml">Returns the file descriptor associated with … … 23653 23656 <div> 23654 23657 <div class="refsect1" lang="en" xml:lang="en"> 23655 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 76430"></a>23658 <a xmlns="http://www.w3.org/1999/xhtml" id="id650565"></a> 23656 23659 <div class="header">Description:</div> 23657 23660 <p xmlns="http://www.w3.org/1999/xhtml">Reads up to max-octets octets from stream into ivector, … … 23660 23663 </div> 23661 23664 <div class="refsect1" lang="en" xml:lang="en"> 23662 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 76443"></a>23665 <a xmlns="http://www.w3.org/1999/xhtml" id="id650578"></a> 23663 23666 <div class="header">Arguments:</div> 23664 23667 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">stream</span></i>---An input stream. The method defined on … … 23685 23688 <div> 23686 23689 <div class="refsect1" lang="en" xml:lang="en"> 23687 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 76562"></a>23690 <a xmlns="http://www.w3.org/1999/xhtml" id="id650697"></a> 23688 23691 <div class="header">Description:</div> 23689 23692 <p xmlns="http://www.w3.org/1999/xhtml">Writes max-octets octets to stream from ivector, starting at … … 23691 23694 </div> 23692 23695 <div class="refsect1" lang="en" xml:lang="en"> 23693 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 76574"></a>23696 <a xmlns="http://www.w3.org/1999/xhtml" id="id650709"></a> 23694 23697 <div class="header">Arguments:</div> 23695 23698 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">stream</span></i>---An input stream. The method defined on … … 23701 23704 </div> 23702 23705 <div class="refsect1" lang="en" xml:lang="en"> 23703 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 76646"></a>23706 <a xmlns="http://www.w3.org/1999/xhtml" id="id650781"></a> 23704 23707 <div class="header">Examples:</div> 23705 23708 <pre xmlns="http://www.w3.org/1999/xhtml" class="programlisting"> … … 24492 24495 <dt> 24493 24496 <span class="sect2"> 24494 <a href="#id 625947">12.2.2. Generating a lisp image for use with Shark</a>24497 <a href="#id574539">12.2.2. Generating a lisp image for use with Shark</a> 24495 24498 </span> 24496 24499 </dt> … … 24770 24773 <div> 24771 24774 <div> 24772 <h3 class="title"><a id="id 625947"></a>12.2.2. Generating a lisp image for use with Shark</h3>24775 <h3 class="title"><a id="id574539"></a>12.2.2. Generating a lisp image for use with Shark</h3> 24773 24776 </div> 24774 24777 </div> … … 24881 24884 </div> 24882 24885 </div> 24883 <p xmlns="http://www.w3.org/1999/xhtml"><a id="id 613587" class="indexterm"></a>24886 <p xmlns="http://www.w3.org/1999/xhtml"><a id="id599911" class="indexterm"></a> 24884 24887 <span class="command"><strong><em class="varname"><a id="chud_shark-config-file"></a>CHUD:*SHARK-CONFIG-FILE*</em> 24885 24888 [Variable]</strong></span></p> … … 24887 24890 profiling configuration file created by the "Config Editor" in 24888 24891 Shark.app.</p> 24889 <p xmlns="http://www.w3.org/1999/xhtml"><a id="id 613610" class="indexterm"></a> <span class="command"><strong><em class="varname"><a id="chud_meter"></a>CHUD:METER</em> form <em class="varname">&key</em> (reset nil)24892 <p xmlns="http://www.w3.org/1999/xhtml"><a id="id599935" class="indexterm"></a> <span class="command"><strong><em class="varname"><a id="chud_meter"></a>CHUD:METER</em> form <em class="varname">&key</em> (reset nil) 24890 24893 (debug-output nil) [Macro]</strong></span></p> 24891 24894 <p xmlns="http://www.w3.org/1999/xhtml">Executes FORM (an arbitrary lisp form) and returns whatever … … 25979 25982 <div> 25980 25983 <div> 25981 <h4 class="title"><a id="id6 75288"></a>13.3.2.4. %int-to-ptr [Function]</h4>25984 <h4 class="title"><a id="id649415"></a>13.3.2.4. %int-to-ptr [Function]</h4> 25982 25985 </div> 25983 25986 </div> … … 26020 26023 <div> 26021 26024 <div> 26022 <h4 class="title"><a id="id6 75363"></a>13.3.2.5. %inc-ptr [Function]</h4>26025 <h4 class="title"><a id="id649489"></a>13.3.2.5. %inc-ptr [Function]</h4> 26023 26026 </div> 26024 26027 </div> … … 26070 26073 <div> 26071 26074 <div> 26072 <h4 class="title"><a id="id6 75454"></a>13.3.2.6. %ptr-to-int [Function]</h4>26075 <h4 class="title"><a id="id649581"></a>13.3.2.6. %ptr-to-int [Function]</h4> 26073 26076 </div> 26074 26077 </div> … … 26112 26115 <div> 26113 26116 <div> 26114 <h4 class="title"><a id="id6 75530"></a>13.3.2.7. %null-ptr [Macro]</h4>26117 <h4 class="title"><a id="id649655"></a>13.3.2.7. %null-ptr [Macro]</h4> 26115 26118 </div> 26116 26119 </div> … … 26137 26140 <div> 26138 26141 <div> 26139 <h4 class="title"><a id="id6 75571"></a>13.3.2.8. %null-ptr-p [Function]</h4>26142 <h4 class="title"><a id="id649696"></a>13.3.2.8. %null-ptr-p [Function]</h4> 26140 26143 </div> 26141 26144 </div> … … 26179 26182 <div> 26180 26183 <div> 26181 <h4 class="title"><a id="id6 75646"></a>13.3.2.9. %setf-macptr [Function]</h4>26184 <h4 class="title"><a id="id649772"></a>13.3.2.9. %setf-macptr [Function]</h4> 26182 26185 </div> 26183 26186 </div> … … 26227 26230 <div> 26228 26231 <div> 26229 <h4 class="title"><a id="id6 75737"></a>13.3.2.10. %incf-ptr [Macro]</h4>26232 <h4 class="title"><a id="id649862"></a>13.3.2.10. %incf-ptr [Macro]</h4> 26230 26233 </div> 26231 26234 </div> … … 26275 26278 <div> 26276 26279 <div> 26277 <h4 class="title"><a id="id6 75827"></a>13.3.2.11. with-macptrs [Macro]</h4>26280 <h4 class="title"><a id="id649953"></a>13.3.2.11. with-macptrs [Macro]</h4> 26278 26281 </div> 26279 26282 </div> … … 26325 26328 <div> 26326 26329 <div> 26327 <h4 class="title"><a id="id6 75919"></a>13.3.2.12. %stack-block [Macro]</h4>26330 <h4 class="title"><a id="id650044"></a>13.3.2.12. %stack-block [Macro]</h4> 26328 26331 </div> 26329 26332 </div> … … 26376 26379 <div> 26377 26380 <div> 26378 <h4 class="title"><a id="id6 76011"></a>13.3.2.13. make-cstring [Function]</h4>26381 <h4 class="title"><a id="id650137"></a>13.3.2.13. make-cstring [Function]</h4> 26379 26382 </div> 26380 26383 </div> … … 26419 26422 <div> 26420 26423 <div> 26421 <h4 class="title"><a id="id6 76087"></a>13.3.2.14. with-cstrs [Macro]</h4>26424 <h4 class="title"><a id="id650213"></a>13.3.2.14. with-cstrs [Macro]</h4> 26422 26425 </div> 26423 26426 </div> … … 26469 26472 <div> 26470 26473 <div> 26471 <h4 class="title"><a id="id6 76179"></a>13.3.2.15. with-encoded-cstrs [Macro]</h4>26474 <h4 class="title"><a id="id650305"></a>13.3.2.15. with-encoded-cstrs [Macro]</h4> 26472 26475 </div> 26473 26476 </div> … … 26532 26535 <div> 26533 26536 <div> 26534 <h4 class="title"><a id="id6 76302"></a>13.3.2.16. %get-cstring [Function]</h4>26537 <h4 class="title"><a id="id650428"></a>13.3.2.16. %get-cstring [Function]</h4> 26535 26538 </div> 26536 26539 </div> … … 26574 26577 <div> 26575 26578 <div> 26576 <h4 class="title"><a id="id 708212"></a>13.3.2.17. %str-from-ptr [Function]</h4>26579 <h4 class="title"><a id="id682334"></a>13.3.2.17. %str-from-ptr [Function]</h4> 26577 26580 </div> 26578 26581 </div> … … 28020 28023 <div> 28021 28024 <div class="refsect1" lang="en" xml:lang="en"> 28022 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710165"></a>28025 <a xmlns="http://www.w3.org/1999/xhtml" id="id684287"></a> 28023 28026 <div class="header">Description:</div> 28024 28027 <p xmlns="http://www.w3.org/1999/xhtml">Reads a symbol from the current input stream, with *PACKAGE* … … 28072 28075 <div> 28073 28076 <div class="refsect1" lang="en" xml:lang="en"> 28074 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710272"></a>28077 <a xmlns="http://www.w3.org/1999/xhtml" id="id684394"></a> 28075 28078 <div class="header">Description:</div> 28076 28079 <p xmlns="http://www.w3.org/1999/xhtml">In <code class="literal">CCL</code> 1.2 and later, the #& reader macro can be used to … … 28131 28134 <div> 28132 28135 <div class="refsect1" lang="en" xml:lang="en"> 28133 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710389"></a>28136 <a xmlns="http://www.w3.org/1999/xhtml" id="id684511"></a> 28134 28137 <div class="header">Description:</div> 28135 28138 <p xmlns="http://www.w3.org/1999/xhtml">In <code class="literal">CCL</code> 0.14.2 and later, the #? reader macro can be used … … 28178 28181 <div> 28179 28182 <div class="refsect1" lang="en" xml:lang="en"> 28180 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710472"></a>28183 <a xmlns="http://www.w3.org/1999/xhtml" id="id684594"></a> 28181 28184 <div class="header">Description:</div> 28182 28185 <p xmlns="http://www.w3.org/1999/xhtml">In <code class="literal">CCL</code> 1.2 and later, the #/ reader macro can be used to … … 28281 28284 <div> 28282 28285 <div class="refsect1" lang="en" xml:lang="en"> 28283 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710611"></a>28286 <a xmlns="http://www.w3.org/1999/xhtml" id="id684733"></a> 28284 28287 <div class="header">Description:</div> 28285 28288 <p xmlns="http://www.w3.org/1999/xhtml">In <code class="literal">CCL</code> 1.2 and later, the #> reader macro reads … … 28310 28313 <div> 28311 28314 <div class="refsect1" lang="en" xml:lang="en"> 28312 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710685"></a>28315 <a xmlns="http://www.w3.org/1999/xhtml" id="id684807"></a> 28313 28316 <div class="header">Values:</div> 28314 28317 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">library</span></i>---either an object of type SHLIB, or a string which … … 28317 28320 </div> 28318 28321 <div class="refsect1" lang="en" xml:lang="en"> 28319 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710721"></a>28322 <a xmlns="http://www.w3.org/1999/xhtml" id="id684843"></a> 28320 28323 <div class="header">Description:</div> 28321 28324 <p xmlns="http://www.w3.org/1999/xhtml">If <em class="varname">completely</em> is T, sets the … … 28346 28349 <div> 28347 28350 <div class="refsect1" lang="en" xml:lang="en"> 28348 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710797"></a>28351 <a xmlns="http://www.w3.org/1999/xhtml" id="id684919"></a> 28349 28352 <div class="header">Values:</div> 28350 28353 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---A symbol which can be made into a special variable</p> … … 28363 28366 </div> 28364 28367 <div class="refsect1" lang="en" xml:lang="en"> 28365 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710869"></a>28368 <a xmlns="http://www.w3.org/1999/xhtml" id="id684991"></a> 28366 28369 <div class="header">Description:</div> 28367 28370 <p xmlns="http://www.w3.org/1999/xhtml">Proclaims <em class="varname">name</em> … … 28399 28402 <div> 28400 28403 <div class="refsect1" lang="en" xml:lang="en"> 28401 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710948"></a>28404 <a xmlns="http://www.w3.org/1999/xhtml" id="id685070"></a> 28402 28405 <div class="header">Values:</div> 28403 28406 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---NIL or a keyword; the keyword may contain … … 28407 28410 </div> 28408 28411 <div class="refsect1" lang="en" xml:lang="en"> 28409 <a xmlns="http://www.w3.org/1999/xhtml" id="id 710989"></a>28412 <a xmlns="http://www.w3.org/1999/xhtml" id="id685111"></a> 28410 28413 <div class="header">Description:</div> 28411 28414 <p xmlns="http://www.w3.org/1999/xhtml">If name is non-NIL, defines name to be an alias for the … … 28441 28444 <div> 28442 28445 <div class="refsect1" lang="en" xml:lang="en"> 28443 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711062"></a>28446 <a xmlns="http://www.w3.org/1999/xhtml" id="id685184"></a> 28444 28447 <div class="header">Values:</div> 28445 28448 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>--- … … 28454 28457 </div> 28455 28458 <div class="refsect1" lang="en" xml:lang="en"> 28456 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711102"></a>28459 <a xmlns="http://www.w3.org/1999/xhtml" id="id685224"></a> 28457 28460 <div class="header">Description:</div> 28458 28461 <p xmlns="http://www.w3.org/1999/xhtml">If there is already an EXTERNAL-ENTRY-POINT for … … 28482 28485 <div> 28483 28486 <div class="refsect1" lang="en" xml:lang="en"> 28484 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711172"></a>28487 <a xmlns="http://www.w3.org/1999/xhtml" id="id685294"></a> 28485 28488 <div class="header">Values:</div> 28486 28489 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---A lisp string. See external, above.</p> … … 28495 28498 </div> 28496 28499 <div class="refsect1" lang="en" xml:lang="en"> 28497 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711245"></a>28500 <a xmlns="http://www.w3.org/1999/xhtml" id="id685367"></a> 28498 28501 <div class="header">Description:</div> 28499 28502 <p xmlns="http://www.w3.org/1999/xhtml">Calls the foreign function at the address obtained by … … 28522 28525 <div> 28523 28526 <div class="refsect1" lang="en" xml:lang="en"> 28524 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711305"></a>28527 <a xmlns="http://www.w3.org/1999/xhtml" id="id685427"></a> 28525 28528 <div class="header">Values:</div> 28526 28529 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">entrypoint</span></i>---A fixnum or MACPTR</p> … … 28533 28536 </div> 28534 28537 <div class="refsect1" lang="en" xml:lang="en"> 28535 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711368"></a>28538 <a xmlns="http://www.w3.org/1999/xhtml" id="id685490"></a> 28536 28539 <div class="header">Description:</div> 28537 28540 <p xmlns="http://www.w3.org/1999/xhtml">Calls the foreign function at address entrypoint passing the … … 28559 28562 <div> 28560 28563 <div class="refsect1" lang="en" xml:lang="en"> 28561 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711427"></a>28564 <a xmlns="http://www.w3.org/1999/xhtml" id="id685548"></a> 28562 28565 <div class="header">Values:</div> 28563 28566 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">entrypoint</span></i>---A fixnum or MACPTR</p> … … 28572 28575 </div> 28573 28576 <div class="refsect1" lang="en" xml:lang="en"> 28574 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711500"></a>28577 <a xmlns="http://www.w3.org/1999/xhtml" id="id685622"></a> 28575 28578 <div class="header">Description:</div> 28576 28579 <p xmlns="http://www.w3.org/1999/xhtml">Calls the foreign function at address entrypoint passing the … … 28597 28600 <div> 28598 28601 <div class="refsect1" lang="en" xml:lang="en"> 28599 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711556"></a>28602 <a xmlns="http://www.w3.org/1999/xhtml" id="id685678"></a> 28600 28603 <div class="header">Values:</div> 28601 28604 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---A lisp string.</p> 28602 28605 </div> 28603 28606 <div class="refsect1" lang="en" xml:lang="en"> 28604 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711578"></a>28607 <a xmlns="http://www.w3.org/1999/xhtml" id="id685700"></a> 28605 28608 <div class="header">Description:</div> 28606 28609 <p xmlns="http://www.w3.org/1999/xhtml">Tries to resolve the address of the foreign symbol … … 28625 28628 <div> 28626 28629 <div class="refsect1" lang="en" xml:lang="en"> 28627 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711637"></a>28630 <a xmlns="http://www.w3.org/1999/xhtml" id="id685759"></a> 28628 28631 <div class="header">Values:</div> 28629 28632 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---A lisp string.</p> 28630 28633 </div> 28631 28634 <div class="refsect1" lang="en" xml:lang="en"> 28632 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711660"></a>28635 <a xmlns="http://www.w3.org/1999/xhtml" id="id685782"></a> 28633 28636 <div class="header">Description:</div> 28634 28637 <p xmlns="http://www.w3.org/1999/xhtml">Tries to resolve the address of the foreign symbol name. If … … 28652 28655 <div> 28653 28656 <div class="refsect1" lang="en" xml:lang="en"> 28654 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711714"></a>28657 <a xmlns="http://www.w3.org/1999/xhtml" id="id685836"></a> 28655 28658 <div class="header">Values:</div> 28656 28659 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">ptr</span></i>---A <code xmlns="http://www.w3.org/1999/xhtml" class="code">MACPTR</code> that points to a block of … … 28658 28661 </div> 28659 28662 <div class="refsect1" lang="en" xml:lang="en"> 28660 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711740"></a>28663 <a xmlns="http://www.w3.org/1999/xhtml" id="id685862"></a> 28661 28664 <div class="header">Description:</div> 28662 28665 <p xmlns="http://www.w3.org/1999/xhtml">In <code class="literal">CCL</code> 1.2 and later, the <code class="code">CCL:FREE</code> … … 28690 28693 <div> 28691 28694 <div class="refsect1" lang="en" xml:lang="en"> 28692 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711833"></a>28695 <a xmlns="http://www.w3.org/1999/xhtml" id="id685955"></a> 28693 28696 <div class="header">Values:</div> 28694 28697 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">element-count</span></i>---A positive integer.</p> … … 28705 28708 </div> 28706 28709 <div class="refsect1" lang="en" xml:lang="en"> 28707 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711908"></a>28710 <a xmlns="http://www.w3.org/1999/xhtml" id="id686030"></a> 28708 28711 <div class="header">Description:</div> 28709 28712 <p xmlns="http://www.w3.org/1999/xhtml"> … … 28740 28743 <div> 28741 28744 <div class="refsect1" lang="en" xml:lang="en"> 28742 <a xmlns="http://www.w3.org/1999/xhtml" id="id 711980"></a>28745 <a xmlns="http://www.w3.org/1999/xhtml" id="id686102"></a> 28743 28746 <div class="header">Values:</div> 28744 28747 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">typespec</span></i>---A foreign type specifier, or a keyword which is used … … 28757 28760 </div> 28758 28761 <div class="refsect1" lang="en" xml:lang="en"> 28759 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712047"></a>28762 <a xmlns="http://www.w3.org/1999/xhtml" id="id686169"></a> 28760 28763 <div class="header">Description:</div> 28761 28764 <p xmlns="http://www.w3.org/1999/xhtml"> … … 28806 28809 <div> 28807 28810 <div class="refsect1" lang="en" xml:lang="en"> 28808 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712170"></a>28811 <a xmlns="http://www.w3.org/1999/xhtml" id="id686291"></a> 28809 28812 <div class="header">Values:</div> 28810 28813 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">typespec</span></i>---A foreign type specifier, or a keyword which is used … … 28820 28823 </div> 28821 28824 <div class="refsect1" lang="en" xml:lang="en"> 28822 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712228"></a>28825 <a xmlns="http://www.w3.org/1999/xhtml" id="id686349"></a> 28823 28826 <div class="header">Description:</div> 28824 28827 <p xmlns="http://www.w3.org/1999/xhtml"> … … 28861 28864 </div> 28862 28865 <div class="refsect1" lang="en" xml:lang="en"> 28863 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712317"></a>28866 <a xmlns="http://www.w3.org/1999/xhtml" id="id686439"></a> 28864 28867 <div class="header">Notes:</div> 28865 28868 <p xmlns="http://www.w3.org/1999/xhtml"> … … 28894 28897 <div> 28895 28898 <div class="refsect1" lang="en" xml:lang="en"> 28896 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712401"></a>28899 <a xmlns="http://www.w3.org/1999/xhtml" id="id686522"></a> 28897 28900 <div class="header">Values:</div> 28898 28901 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---A SIMPLE-STRING which is presumed to be the so-name of … … 28902 28905 </div> 28903 28906 <div class="refsect1" lang="en" xml:lang="en"> 28904 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712441"></a>28907 <a xmlns="http://www.w3.org/1999/xhtml" id="id686563"></a> 28905 28908 <div class="header">Description:</div> 28906 28909 <p xmlns="http://www.w3.org/1999/xhtml">If the library denoted by <em class="varname">name</em> can … … 28913 28916 </div> 28914 28917 <div class="refsect1" lang="en" xml:lang="en"> 28915 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712456"></a>28918 <a xmlns="http://www.w3.org/1999/xhtml" id="id686578"></a> 28916 28919 <div class="header">Examples:</div> 28917 28920 <pre xmlns="http://www.w3.org/1999/xhtml" class="programlisting">;;; Try to do something simple. … … 28948 28951 </div> 28949 28952 <div class="refsect1" lang="en" xml:lang="en"> 28950 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712477"></a>28953 <a xmlns="http://www.w3.org/1999/xhtml" id="id686599"></a> 28951 28954 <div class="header">Notes:</div> 28952 28955 <p xmlns="http://www.w3.org/1999/xhtml">It would be helpful to describe what an soname is and give … … 28971 28974 <div> 28972 28975 <div class="refsect1" lang="en" xml:lang="en"> 28973 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712534"></a>28976 <a xmlns="http://www.w3.org/1999/xhtml" id="id686656"></a> 28974 28977 <div class="header">Values:</div> 28975 28978 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">ptr</span></i>---<a xmlns="http://www.w3.org/1999/xhtml" class="link" href="#Referencing-and-Using-Foreign-Memory-Addresses" title="13.3. Referencing and Using Foreign Memory Addresses">a MACPTR</a>.</p> … … 28979 28982 </div> 28980 28983 <div class="refsect1" lang="en" xml:lang="en"> 28981 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712579"></a>28984 <a xmlns="http://www.w3.org/1999/xhtml" id="id686701"></a> 28982 28985 <div class="header">Description:</div> 28983 28986 <p xmlns="http://www.w3.org/1999/xhtml">References an instance of a foreign type (or a component of … … 29005 29008 <div> 29006 29009 <div class="refsect1" lang="en" xml:lang="en"> 29007 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712644"></a>29010 <a xmlns="http://www.w3.org/1999/xhtml" id="id686766"></a> 29008 29011 <div class="header">Values:</div> 29009 29012 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">eep</span></i>---An EXTERNAL-ENTRY-POINT, as obtained by the EXTERNAL … … 29011 29014 </div> 29012 29015 <div class="refsect1" lang="en" xml:lang="en"> 29013 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712667"></a>29016 <a xmlns="http://www.w3.org/1999/xhtml" id="id686789"></a> 29014 29017 <div class="header">Description:</div> 29015 29018 <p xmlns="http://www.w3.org/1999/xhtml">Tries to resolve the address of the EXTERNAL-ENTRY-POINT … … 29034 29037 <div> 29035 29038 <div class="refsect1" lang="en" xml:lang="en"> 29036 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712738"></a>29039 <a xmlns="http://www.w3.org/1999/xhtml" id="id686860"></a> 29037 29040 <div class="header">Values:</div> 29038 29041 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">var</span></i>---A symbol (a lisp variable)</p> … … 29042 29045 </div> 29043 29046 <div class="refsect1" lang="en" xml:lang="en"> 29044 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712789"></a>29047 <a xmlns="http://www.w3.org/1999/xhtml" id="id686911"></a> 29045 29048 <div class="header">Description:</div> 29046 29049 <p xmlns="http://www.w3.org/1999/xhtml">Executes <em class="varname">body</em> … … 29072 29075 <div> 29073 29076 <div class="refsect1" lang="en" xml:lang="en"> 29074 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712870"></a>29077 <a xmlns="http://www.w3.org/1999/xhtml" id="id686992"></a> 29075 29078 <div class="header">Values:</div> 29076 29079 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">var</span></i>---A symbol (a lisp variable)</p> … … 29079 29082 </div> 29080 29083 <div class="refsect1" lang="en" xml:lang="en"> 29081 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712918"></a>29084 <a xmlns="http://www.w3.org/1999/xhtml" id="id687040"></a> 29082 29085 <div class="header">Description:</div> 29083 29086 <p xmlns="http://www.w3.org/1999/xhtml">Executes body in an environment in which each var is … … 29106 29109 <div> 29107 29110 <div class="refsect1" lang="en" xml:lang="en"> 29108 <a xmlns="http://www.w3.org/1999/xhtml" id="id 712986"></a>29111 <a xmlns="http://www.w3.org/1999/xhtml" id="id687108"></a> 29109 29112 <div class="header">Values:</div> 29110 29113 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">object</span></i>---A CLOS object of a class for which there exists … … 29114 29117 </div> 29115 29118 <div class="refsect1" lang="en" xml:lang="en"> 29116 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713014"></a>29119 <a xmlns="http://www.w3.org/1999/xhtml" id="id687136"></a> 29117 29120 <div class="header">Description:</div> 29118 29121 <p xmlns="http://www.w3.org/1999/xhtml"> … … 29151 29154 </div> 29152 29155 <div class="refsect1" lang="en" xml:lang="en"> 29153 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713070"></a>29156 <a xmlns="http://www.w3.org/1999/xhtml" id="id687192"></a> 29154 29157 <div class="header">Example:</div> 29155 29158 <pre xmlns="http://www.w3.org/1999/xhtml" class="programlisting"> … … 29165 29168 </div> 29166 29169 <div class="refsect1" lang="en" xml:lang="en"> 29167 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713085"></a>29170 <a xmlns="http://www.w3.org/1999/xhtml" id="id687207"></a> 29168 29171 <div class="header">See Also:</div> 29169 29172 <span xmlns="http://www.w3.org/1999/xhtml" class="simplelist"> … … 29187 29190 <div> 29188 29191 <div class="refsect1" lang="en" xml:lang="en"> 29189 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713145"></a>29192 <a xmlns="http://www.w3.org/1999/xhtml" id="id687267"></a> 29190 29193 <div class="header">Values:</div> 29191 29194 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">dir-id</span></i>---A keyword whose pname, mapped to lower case, names a … … 29194 29197 </div> 29195 29198 <div class="refsect1" lang="en" xml:lang="en"> 29196 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713169"></a>29199 <a xmlns="http://www.w3.org/1999/xhtml" id="id687290"></a> 29197 29200 <div class="header">Description:</div> 29198 29201 <p xmlns="http://www.w3.org/1999/xhtml">Tells <code class="literal">CCL</code> to remove the interface directory denoted by … … 29218 29221 <div> 29219 29222 <div class="refsect1" lang="en" xml:lang="en"> 29220 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713229"></a>29223 <a xmlns="http://www.w3.org/1999/xhtml" id="id687351"></a> 29221 29224 <div class="header">Values:</div> 29222 29225 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">dir-id</span></i>---A keyword whose pname, mapped to lower case, names a … … 29225 29228 </div> 29226 29229 <div class="refsect1" lang="en" xml:lang="en"> 29227 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713252"></a>29230 <a xmlns="http://www.w3.org/1999/xhtml" id="id687374"></a> 29228 29231 <div class="header">Description:</div> 29229 29232 <p xmlns="http://www.w3.org/1999/xhtml">Tells <code class="literal">CCL</code> to add the interface directory denoted by … … 29247 29250 </div> 29248 29251 <div class="refsect1" lang="en" xml:lang="en"> 29249 <a xmlns="http://www.w3.org/1999/xhtml" id="id 713291"></a>29252 <a xmlns="http://www.w3.org/1999/xhtml" id="id687412"></a> 29250 29253 <div class="header">Examples:</div> 29251 29254 <p xmlns="http://www.w3.org/1999/xhtml">One typically wants interface information to be … … 30936 30939 <div> 30937 30940 <div class="refsect1" lang="en" xml:lang="en"> 30938 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 77513"></a>30941 <a xmlns="http://www.w3.org/1999/xhtml" id="id651634"></a> 30939 30942 <div class="header">Arguments and Values:</div> 30940 30943 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---a string which is the name of an existing … … 30946 30949 </div> 30947 30950 <div class="refsect1" lang="en" xml:lang="en"> 30948 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 77558"></a>30951 <a xmlns="http://www.w3.org/1999/xhtml" id="id651679"></a> 30949 30952 <div class="header">Description:</div> 30950 30953 <p xmlns="http://www.w3.org/1999/xhtml"> … … 30967 30970 <div> 30968 30971 <div class="refsect1" lang="en" xml:lang="en"> 30969 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 77619"></a>30972 <a xmlns="http://www.w3.org/1999/xhtml" id="id651740"></a> 30970 30973 <div class="header">Arguments and Values:</div> 30971 30974 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name</span></i>---a string which is the name of a new or existing … … 30980 30983 </div> 30981 30984 <div class="refsect1" lang="en" xml:lang="en"> 30982 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52081"></a>30985 <a xmlns="http://www.w3.org/1999/xhtml" id="id626152"></a> 30983 30986 <div class="header">Description:</div> 30984 30987 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31004 31007 <div> 31005 31008 <div class="refsect1" lang="en" xml:lang="en"> 31006 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52143"></a>31009 <a xmlns="http://www.w3.org/1999/xhtml" id="id626214"></a> 31007 31010 <div class="header">Values:</div> 31008 31011 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">path</span></i>---a string, an absolute pathname in Posix format - with … … 31010 31013 </div> 31011 31014 <div class="refsect1" lang="en" xml:lang="en"> 31012 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52170"></a>31015 <a xmlns="http://www.w3.org/1999/xhtml" id="id626241"></a> 31013 31016 <div class="header">Description:</div> 31014 31017 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31032 31035 <div> 31033 31036 <div class="refsect1" lang="en" xml:lang="en"> 31034 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52229"></a>31037 <a xmlns="http://www.w3.org/1999/xhtml" id="id626299"></a> 31035 31038 <div class="header">Values:</div> 31036 31039 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">uid</span></i>---a non-negative integer, identifying a specific user … … 31038 31041 </div> 31039 31042 <div class="refsect1" lang="en" xml:lang="en"> 31040 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52256"></a>31043 <a xmlns="http://www.w3.org/1999/xhtml" id="id626326"></a> 31041 31044 <div class="header">Description:</div> 31042 31045 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31058 31061 <div> 31059 31062 <div class="refsect1" lang="en" xml:lang="en"> 31060 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52313"></a>31063 <a xmlns="http://www.w3.org/1999/xhtml" id="id626384"></a> 31061 31064 <div class="header">Arguments and Values:</div> 31062 31065 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">uid</span></i>---a non-negative integer, identifying a specific user … … 31067 31070 </div> 31068 31071 <div class="refsect1" lang="en" xml:lang="en"> 31069 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52356"></a>31072 <a xmlns="http://www.w3.org/1999/xhtml" id="id626426"></a> 31070 31073 <div class="header">Description:</div> 31071 31074 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31090 31093 <div> 31091 31094 <div class="refsect1" lang="en" xml:lang="en"> 31092 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52415"></a>31095 <a xmlns="http://www.w3.org/1999/xhtml" id="id626486"></a> 31093 31096 <div class="header">Arguments and Values:</div> 31094 31097 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">gid</span></i>---a non-negative integer, identifying a specific … … 31099 31102 </div> 31100 31103 <div class="refsect1" lang="en" xml:lang="en"> 31101 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52458"></a>31104 <a xmlns="http://www.w3.org/1999/xhtml" id="id626528"></a> 31102 31105 <div class="header">Description:</div> 31103 31106 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31122 31125 <div> 31123 31126 <div class="refsect1" lang="en" xml:lang="en"> 31124 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52517"></a>31127 <a xmlns="http://www.w3.org/1999/xhtml" id="id626588"></a> 31125 31128 <div class="header">Values:</div> 31126 31129 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">pid</span></i>---a non-negative integer, identifying an OS process</p> 31127 31130 </div> 31128 31131 <div class="refsect1" lang="en" xml:lang="en"> 31129 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 52543"></a>31132 <a xmlns="http://www.w3.org/1999/xhtml" id="id626614"></a> 31130 31133 <div class="header">Description:</div> 31131 31134 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31148 31151 <div> 31149 31152 <div class="refsect1" lang="en" xml:lang="en"> 31150 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53187"></a>31153 <a xmlns="http://www.w3.org/1999/xhtml" id="id627258"></a> 31151 31154 <div class="header">Values:</div> 31152 31155 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">uid</span></i>---a non-negative integer, identifying a specific user … … 31156 31159 </div> 31157 31160 <div class="refsect1" lang="en" xml:lang="en"> 31158 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53230"></a>31161 <a xmlns="http://www.w3.org/1999/xhtml" id="id627301"></a> 31159 31162 <div class="header">Description:</div> 31160 31163 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31181 31184 <div> 31182 31185 <div class="refsect1" lang="en" xml:lang="en"> 31183 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53299"></a>31186 <a xmlns="http://www.w3.org/1999/xhtml" id="id627370"></a> 31184 31187 <div class="header">Values:</div> 31185 31188 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">command-line</span></i>---a string, obeying all the whitespace and … … 31190 31193 </div> 31191 31194 <div class="refsect1" lang="en" xml:lang="en"> 31192 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53341"></a>31195 <a xmlns="http://www.w3.org/1999/xhtml" id="id627412"></a> 31193 31196 <div class="header">Description:</div> 31194 31197 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31206 31209 </div> 31207 31210 <div class="refsect1" lang="en" xml:lang="en"> 31208 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53375"></a>31211 <a xmlns="http://www.w3.org/1999/xhtml" id="id627446"></a> 31209 31212 <div class="header">Notes:</div> 31210 31213 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31231 31234 <div> 31232 31235 <div class="refsect1" lang="en" xml:lang="en"> 31233 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53435"></a>31236 <a xmlns="http://www.w3.org/1999/xhtml" id="id627506"></a> 31234 31237 <div class="header">Arguments and Values:</div> 31235 31238 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">class-name</span></i>---a string which denotes an existing class name, or a … … 31238 31241 </div> 31239 31242 <div class="refsect1" lang="en" xml:lang="en"> 31240 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53463"></a>31243 <a xmlns="http://www.w3.org/1999/xhtml" id="id627534"></a> 31241 31244 <div class="header">Description:</div> 31242 31245 <p xmlns="http://www.w3.org/1999/xhtml">Used to refer to a known ObjC class by name. (Via the use … … 31263 31266 <div> 31264 31267 <div class="refsect1" lang="en" xml:lang="en"> 31265 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53532"></a>31268 <a xmlns="http://www.w3.org/1999/xhtml" id="id627603"></a> 31266 31269 <div class="header">Arguments and Values:</div> 31267 31270 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">string</span></i>---a string constant, used to canonically refer to an … … 31269 31272 </div> 31270 31273 <div class="refsect1" lang="en" xml:lang="en"> 31271 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53558"></a>31274 <a xmlns="http://www.w3.org/1999/xhtml" id="id627629"></a> 31272 31275 <div class="header">Description:</div> 31273 31276 <p xmlns="http://www.w3.org/1999/xhtml">Used to refer to an ObjC method selector (method name). Uses … … 31291 31294 <div> 31292 31295 <div class="refsect1" lang="en" xml:lang="en"> 31293 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53624"></a>31296 <a xmlns="http://www.w3.org/1999/xhtml" id="id627695"></a> 31294 31297 <div class="header">Arguments and Values:</div> 31295 31298 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">name-and-result-type</span></i>---either an Objective-C message name, for methods … … 31313 31316 </div> 31314 31317 <div class="refsect1" lang="en" xml:lang="en"> 31315 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 53705"></a>31318 <a xmlns="http://www.w3.org/1999/xhtml" id="id627776"></a> 31316 31319 <div class="header">Description:</div> 31317 31320 <p xmlns="http://www.w3.org/1999/xhtml">Defines an Objective-C-callable method which implements … … 31338 31341 <div> 31339 31342 <div class="refsect1" lang="en" xml:lang="en"> 31340 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73519"></a>31343 <a xmlns="http://www.w3.org/1999/xhtml" id="id647629"></a> 31341 31344 <div class="header">Arguments and Values:</div> 31342 31345 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">selector</span></i>---either a string which represents the name of the … … 31353 31356 </div> 31354 31357 <div class="refsect1" lang="en" xml:lang="en"> 31355 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73565"></a>31358 <a xmlns="http://www.w3.org/1999/xhtml" id="id647676"></a> 31356 31359 <div class="header">Description:</div> 31357 31360 <p xmlns="http://www.w3.org/1999/xhtml">Defines an ObjC-callable method which implements the … … 31374 31377 <div> 31375 31378 <div class="refsect1" lang="en" xml:lang="en"> 31376 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73628"></a>31379 <a xmlns="http://www.w3.org/1999/xhtml" id="id647739"></a> 31377 31380 <div class="header">Arguments and Values:</div> 31378 31381 <p xmlns="http://www.w3.org/1999/xhtml">As per DEFINE-OBJC-METHOD</p> 31379 31382 </div> 31380 31383 <div class="refsect1" lang="en" xml:lang="en"> 31381 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73640"></a>31384 <a xmlns="http://www.w3.org/1999/xhtml" id="id647750"></a> 31382 31385 <div class="header">Description:</div> 31383 31386 <p xmlns="http://www.w3.org/1999/xhtml">Like DEFINE-OBJC-METHOD, only used to define methods on the … … 31421 31424 <div> 31422 31425 <div class="refsect1" lang="en" xml:lang="en"> 31423 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73716"></a>31426 <a xmlns="http://www.w3.org/1999/xhtml" id="id647827"></a> 31424 31427 <div class="header">Description:</div> 31425 31428 <p xmlns="http://www.w3.org/1999/xhtml">This variable is currently only used by the standard reader macro … … 31456 31459 <div> 31457 31460 <div class="refsect1" lang="en" xml:lang="en"> 31458 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73773"></a>31461 <a xmlns="http://www.w3.org/1999/xhtml" id="id647884"></a> 31459 31462 <div class="header">Superclasses:</div> 31460 31463 <p xmlns="http://www.w3.org/1999/xhtml">NS:NS-STRING</p> 31461 31464 </div> 31462 31465 <div class="refsect1" lang="en" xml:lang="en"> 31463 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73785"></a>31466 <a xmlns="http://www.w3.org/1999/xhtml" id="id647895"></a> 31464 31467 <div class="header">Initargs:</div> 31465 31468 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">:string</span></i>--- … … 31469 31472 </div> 31470 31473 <div class="refsect1" lang="en" xml:lang="en"> 31471 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73812"></a>31474 <a xmlns="http://www.w3.org/1999/xhtml" id="id647922"></a> 31472 31475 <div class="header">Description:</div> 31473 31476 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31487 31490 </div> 31488 31491 <div class="refsect1" lang="en" xml:lang="en"> 31489 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73831"></a>31492 <a xmlns="http://www.w3.org/1999/xhtml" id="id647942"></a> 31490 31493 <div class="header">Examples:</div> 31491 31494 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31518 31521 </div> 31519 31522 <div class="refsect1" lang="en" xml:lang="en"> 31520 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73884"></a>31523 <a xmlns="http://www.w3.org/1999/xhtml" id="id647994"></a> 31521 31524 <div class="header">Notes:</div> 31522 31525 <p xmlns="http://www.w3.org/1999/xhtml"> … … 31858 31861 <div> 31859 31862 <div class="refsect1" lang="en" xml:lang="en"> 31860 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 50865"></a>31863 <a xmlns="http://www.w3.org/1999/xhtml" id="id622934"></a> 31861 31864 <div class="header">Arguments and Values:</div> 31862 31865 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">type</span></i>---The type of population, one of <code xmlns="http://www.w3.org/1999/xhtml" class="literal">:LIST</code> (the default) or <code xmlns="http://www.w3.org/1999/xhtml" class="literal">:ALIST</code></p> … … 31866 31869 </div> 31867 31870 <div class="refsect1" lang="en" xml:lang="en"> 31868 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 50924"></a>31871 <a xmlns="http://www.w3.org/1999/xhtml" id="id622994"></a> 31869 31872 <div class="header">Description:</div> 31870 31873 <p xmlns="http://www.w3.org/1999/xhtml">Creates a new population of the specified type.</p> … … 31884 31887 <div> 31885 31888 <div class="refsect1" lang="en" xml:lang="en"> 31886 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 51140"></a>31889 <a xmlns="http://www.w3.org/1999/xhtml" id="id624868"></a> 31887 31890 <div class="header">Description:</div> 31888 31891 <p xmlns="http://www.w3.org/1999/xhtml">returns the type of <code class="literal">population</code>, one of <code class="literal">:LIST</code> or <code class="literal">:ALIST</code></p> … … 31902 31905 <div> 31903 31906 <div class="refsect1" lang="en" xml:lang="en"> 31904 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 51215"></a>31907 <a xmlns="http://www.w3.org/1999/xhtml" id="id624942"></a> 31905 31908 <div class="header">Description:</div> 31906 31909 <p xmlns="http://www.w3.org/1999/xhtml">returns the list encapsulated in <code class="literal">population</code>. … … 31925 31928 <div> 31926 31929 <div class="refsect1" lang="en" xml:lang="en"> 31927 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 48828"></a>31930 <a xmlns="http://www.w3.org/1999/xhtml" id="id625171"></a> 31928 31931 <div class="header">Description:</div> 31929 31932 <p xmlns="http://www.w3.org/1999/xhtml">Sets the list encapsulated in <code class="literal">population</code> to … … 31958 31961 <div> 31959 31962 <div class="refsect1" lang="en" xml:lang="en"> 31960 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 48913"></a>31963 <a xmlns="http://www.w3.org/1999/xhtml" id="id625256"></a> 31961 31964 <div class="header">Description:</div> 31962 31965 <p xmlns="http://www.w3.org/1999/xhtml">Returns the value of the kernel variable that specifies the … … 31979 31982 <div> 31980 31983 <div class="refsect1" lang="en" xml:lang="en"> 31981 <a xmlns="http://www.w3.org/1999/xhtml" id="id648 973"></a>31984 <a xmlns="http://www.w3.org/1999/xhtml" id="id648033"></a> 31982 31985 <div class="header">Arguments and Values:</div> 31983 31986 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">new-threshold</span></i>---The requested new lisp-heap-gc-threshold.</p> 31984 31987 </div> 31985 31988 <div class="refsect1" lang="en" xml:lang="en"> 31986 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73913"></a>31989 <a xmlns="http://www.w3.org/1999/xhtml" id="id648058"></a> 31987 31990 <div class="header">Description:</div> 31988 31991 <p xmlns="http://www.w3.org/1999/xhtml">Sets the value of the kernel variable that specifies the … … 32008 32011 <div> 32009 32012 <div class="refsect1" lang="en" xml:lang="en"> 32010 <a xmlns="http://www.w3.org/1999/xhtml" id="id5 56544"></a>32013 <a xmlns="http://www.w3.org/1999/xhtml" id="id530671"></a> 32011 32014 <div class="header">Description:</div> 32012 32015 <p xmlns="http://www.w3.org/1999/xhtml">Tries to grow or shrink lisp's heap space, so that the … … 32028 32031 <div> 32029 32032 <div class="refsect1" lang="en" xml:lang="en"> 32030 <a xmlns="http://www.w3.org/1999/xhtml" id="id5 56602"></a>32033 <a xmlns="http://www.w3.org/1999/xhtml" id="id530729"></a> 32031 32034 <div class="header">Arguments and Values:</div> 32032 32035 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">arg</span></i>---a generalized boolean</p> 32033 32036 </div> 32034 32037 <div class="refsect1" lang="en" xml:lang="en"> 32035 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 73957"></a>32038 <a xmlns="http://www.w3.org/1999/xhtml" id="id648102"></a> 32036 32039 <div class="header">Description:</div> 32037 32040 <p xmlns="http://www.w3.org/1999/xhtml">Enables the EGC if arg is non-nil, disables the EGC … … 32059 32062 <div> 32060 32063 <div class="refsect1" lang="en" xml:lang="en"> 32061 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 74015"></a>32064 <a xmlns="http://www.w3.org/1999/xhtml" id="id648161"></a> 32062 32065 <div class="header">Description:</div> 32063 32066 <p xmlns="http://www.w3.org/1999/xhtml">Returns T if the EGC was enabled at the time of the call, … … 32082 32085 <div> 32083 32086 <div class="refsect1" lang="en" xml:lang="en"> 32084 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 74071"></a>32087 <a xmlns="http://www.w3.org/1999/xhtml" id="id648217"></a> 32085 32088 <div class="header">Description:</div> 32086 32089 <p xmlns="http://www.w3.org/1999/xhtml">Returns T if the EGC was active at the time of the call, NIL … … 32107 32110 <div> 32108 32111 <div class="refsect1" lang="en" xml:lang="en"> 32109 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 74129"></a>32112 <a xmlns="http://www.w3.org/1999/xhtml" id="id648275"></a> 32110 32113 <div class="header">Description:</div> 32111 32114 <p xmlns="http://www.w3.org/1999/xhtml">Returns, as multiple values, the sizes in kilobytes of the … … 32129 32132 <div> 32130 32133 <div class="refsect1" lang="en" xml:lang="en"> 32131 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 74188"></a>32134 <a xmlns="http://www.w3.org/1999/xhtml" id="id648333"></a> 32132 32135 <div class="header">Arguments and Values:</div> 32133 32136 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">generation-0-size</span></i>---the requested threshold size of the youngest … … 32139 32142 </div> 32140 32143 <div class="refsect1" lang="en" xml:lang="en"> 32141 <a xmlns="http://www.w3.org/1999/xhtml" id="id67 4243"></a>32144 <a xmlns="http://www.w3.org/1999/xhtml" id="id676446"></a> 32142 32145 <div class="header">Description:</div> 32143 32146 <p xmlns="http://www.w3.org/1999/xhtml">Puts the indicated threshold sizes in effect. … … 32163 32166 <div> 32164 32167 <div class="refsect1" lang="en" xml:lang="en"> 32165 <a xmlns="http://www.w3.org/1999/xhtml" id="id 702365"></a>32168 <a xmlns="http://www.w3.org/1999/xhtml" id="id676512"></a> 32166 32169 <div class="header">Arguments and Values:</div> 32167 32170 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">arg</span></i>---a generalized boolean</p> 32168 32171 </div> 32169 32172 <div class="refsect1" lang="en" xml:lang="en"> 32170 <a xmlns="http://www.w3.org/1999/xhtml" id="id 702391"></a>32173 <a xmlns="http://www.w3.org/1999/xhtml" id="id676538"></a> 32171 32174 <div class="header">Description:</div> 32172 32175 <p xmlns="http://www.w3.org/1999/xhtml">Tries to influence the GC to retain/recycle the pages … … 32193 32196 <div> 32194 32197 <div class="refsect1" lang="en" xml:lang="en"> 32195 <a xmlns="http://www.w3.org/1999/xhtml" id="id 702449"></a>32198 <a xmlns="http://www.w3.org/1999/xhtml" id="id676596"></a> 32196 32199 <div class="header">Description:</div> 32197 32200 <p xmlns="http://www.w3.org/1999/xhtml">Returns T if the GC tries to retain pages between full GCs … … 32348 32351 <dt> 32349 32352 <span class="sect2"> 32350 <a href="#id 708023">17.7.2. Recommended Reading</a>32353 <a href="#id682070">17.7.2. Recommended Reading</a> 32351 32354 </span> 32352 32355 </dt> … … 33624 33627 <li class="listitem"> 33625 33628 <p>To support a feature called <span class="emphasis"><em>GCTWA 33626 <sup>[<a id="id 707577" href="#ftn.id707577" class="footnote">1</a>]</sup>33629 <sup>[<a id="id681624" href="#ftn.id681624" class="footnote">1</a>]</sup> 33627 33630 , </em></span>the vector that contains the internal 33628 33631 symbols of the current package is marked on entry to the … … 33757 33760 <hr width="100" align="left" /> 33758 33761 <div class="footnote"> 33759 <p><sup>[<a id="ftn.id 707577" href="#id707577" class="para">1</a>] </sup>I believe that the acronym comes from MACLISP,33762 <p><sup>[<a id="ftn.id681624" href="#id681624" class="para">1</a>] </sup>I believe that the acronym comes from MACLISP, 33760 33763 where it stood for "Garbage Collection of Truly 33761 33764 Worthless Atoms".</p> … … 33817 33820 generations looking for such intergenerational references, the 33818 33821 runtime system must note all such intergenerational references 33819 at the point where they're created (via Setf).<sup>[<a id="id 707811" href="#ftn.id707811" class="footnote">2</a>]</sup> The33822 at the point where they're created (via Setf).<sup>[<a id="id681858" href="#ftn.id681858" class="footnote">2</a>]</sup> The 33820 33823 set of pointers that may contain intergenerational references is 33821 33824 sometimes called <span class="emphasis"><em>the remembered set</em></span>.</p> … … 33864 33867 that might introduce an intergenerational reference must be 33865 33868 memoized. 33866 <sup>[<a id="id 707880" href="#ftn.id707880" class="footnote">3</a>]</sup> It's always safe to33869 <sup>[<a id="id681927" href="#ftn.id681927" class="footnote">3</a>]</sup> It's always safe to 33867 33870 push any cons cell or gvector locative onto the memo stack; 33868 33871 it's never safe to push anything else. … … 33885 33888 <hr width="100" align="left" /> 33886 33889 <div class="footnote"> 33887 <p><sup>[<a id="ftn.id 707811" href="#id707811" class="para">2</a>] </sup>This is33890 <p><sup>[<a id="ftn.id681858" href="#id681858" class="para">2</a>] </sup>This is 33888 33891 sometimes called "The Write Barrier": all assignments which 33889 33892 might result in intergenerational references must be noted, as … … 33891 33894 </div> 33892 33895 <div class="footnote"> 33893 <p><sup>[<a id="ftn.id 707880" href="#id707880" class="para">3</a>] </sup>Note that the implicit setfs that occur when33896 <p><sup>[<a id="ftn.id681927" href="#id681927" class="para">3</a>] </sup>Note that the implicit setfs that occur when 33894 33897 initializing an object - as in the case of a call to cons or 33895 33898 vector - can't introduce intergenerational references, since … … 34007 34010 <div> 34008 34011 <div> 34009 <h3 class="title"><a id="id 708023"></a>17.7.2. Recommended Reading</h3>34012 <h3 class="title"><a id="id682070"></a>17.7.2. Recommended Reading</h3> 34010 34013 </div> 34011 34014 </div> … … 34420 34423 <div> 34421 34424 <div class="refsect1" lang="en" xml:lang="en"> 34422 <a xmlns="http://www.w3.org/1999/xhtml" id="id 595940"></a>34425 <a xmlns="http://www.w3.org/1999/xhtml" id="id601590"></a> 34423 34426 <div class="header">Description:</div> 34424 34427 <p xmlns="http://www.w3.org/1999/xhtml">When true, attempts to redefine (via DEFUN or DEFMETHOD) … … 34445 34448 <div> 34446 34449 <div class="refsect1" lang="en" xml:lang="en"> 34447 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 55825"></a>34450 <a xmlns="http://www.w3.org/1999/xhtml" id="id624162"></a> 34448 34451 <div class="header">Description:</div> 34449 34452 <p xmlns="http://www.w3.org/1999/xhtml">Arranges that the outermost special bindings of *PACKAGE* … … 34469 34472 <div> 34470 34473 <div class="refsect1" lang="en" xml:lang="en"> 34471 <a xmlns="http://www.w3.org/1999/xhtml" id="id 652821"></a>34474 <a xmlns="http://www.w3.org/1999/xhtml" id="id582638"></a> 34472 34475 <div class="header">Description:</div> 34473 34476 <p xmlns="http://www.w3.org/1999/xhtml">Arranges that the outermost special bindings of *PACKAGE* … … 34492 34495 <div> 34493 34496 <div class="refsect1" lang="en" xml:lang="en"> 34494 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 43928"></a>34497 <a xmlns="http://www.w3.org/1999/xhtml" id="id652353"></a> 34495 34498 <div class="header">Description:</div> 34496 34499 <p xmlns="http://www.w3.org/1999/xhtml">This variable is initialized each time an Clozure CL session … … 34517 34520 <div> 34518 34521 <div class="refsect1" lang="en" xml:lang="en"> 34519 <a xmlns="http://www.w3.org/1999/xhtml" id="id 650078"></a>34522 <a xmlns="http://www.w3.org/1999/xhtml" id="id592546"></a> 34520 34523 <div class="header">Description:</div> 34521 34524 <p xmlns="http://www.w3.org/1999/xhtml">Returns non-NIL if AltiVec is available.</p> … … 34535 34538 <div> 34536 34539 <div class="refsect1" lang="en" xml:lang="en"> 34537 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 12300"></a>34540 <a xmlns="http://www.w3.org/1999/xhtml" id="id652660"></a> 34538 34541 <div class="header">Description:</div> 34539 34542 <p xmlns="http://www.w3.org/1999/xhtml">Intended to control the expansion of certain lap macros. … … 34557 34560 <div> 34558 34561 <div class="refsect1" lang="en" xml:lang="en"> 34559 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 08790"></a>34562 <a xmlns="http://www.w3.org/1999/xhtml" id="id617716"></a> 34560 34563 <div class="header">Arguments and Values:</div> 34561 34564 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">reglist</span></i>---A list of vector register names (vr0 .. vr31).</p> … … 34563 34566 </div> 34564 34567 <div class="refsect1" lang="en" xml:lang="en"> 34565 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 08831"></a>34568 <a xmlns="http://www.w3.org/1999/xhtml" id="id617757"></a> 34566 34569 <div class="header">Description:</div> 34567 34570 <p xmlns="http://www.w3.org/1999/xhtml">Specifies the set of AltiVec registers used in body. If … … 34589 34592 <div> 34590 34593 <div class="refsect1" lang="en" xml:lang="en"> 34591 <a xmlns="http://www.w3.org/1999/xhtml" id="id6 50422"></a>34594 <a xmlns="http://www.w3.org/1999/xhtml" id="id676757"></a> 34592 34595 <div class="header">Arguments and Values:</div> 34593 34596 <p><i><span xmlns="http://www.w3.org/1999/xhtml" class="term">base</span></i>---Any available general-purpose register.</p> … … 34598 34601 </div> 34599 34602 <div class="refsect1" lang="en" xml:lang="en"> 34600 <a xmlns="http://www.w3.org/1999/xhtml" id="id 706799"></a>34603 <a xmlns="http://www.w3.org/1999/xhtml" id="id620761"></a> 34601 34604 <div class="header">Description:</div> 34602 34605 <p xmlns="http://www.w3.org/1999/xhtml">Generates code which allocates a 16-byte aligned buffer … … 35618 35621 <a href="#Symbol-Index">Symbol Index</a> 35619 35622 </div> 35620 <p xmlns="http://www.w3.org/TR/xhtml1/transitional" xmlns:date="http://exslt.org/dates-and-times" class="footer">This document was last modified at 9:0 on October 27, 2011, in UTC.<br></br>It uses version 1.75.2 of the Norman Walsh Docbook stylesheets.<br></br>Built from subversion rev 15047<br></br>Using libxml 20706, libxslt 10126 and libexslt 815.</p>35623 <p xmlns="http://www.w3.org/TR/xhtml1/transitional" xmlns:date="http://exslt.org/dates-and-times" class="footer">This document was last modified at 2:0 on November 1, 2011, in UTC.<br></br>It uses version 1.75.2 of the Norman Walsh Docbook stylesheets.<br></br>Built from subversion rev 15053<br></br>Using libxml 20706, libxslt 10126 and libexslt 815.</p> 35621 35624 </body> 35622 35625 </html>
Note:
See TracChangeset
for help on using the changeset viewer.
