Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > e3d62627d1d1aab7ab1be2dd7f65a872 > files > 272

ecl-10.4.1-1.fc14.x86_64.rpm

<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>Chapter&#160;5.&#160;Memory Management</title><link rel="stylesheet" href="ecl.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="The ECL manual"><link rel="up" href="pt02.html" title="Part&#160;II.&#160;Extensions and libraries"><link rel="prev" href="ch19s02.html" title="4.2.&#160;MP Reference"><link rel="next" href="ch20s02.html" title="5.2.&#160;Boehm-Weiser garbage collector"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&#160;5.&#160;Memory Management</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch19s02.html">Prev</a>&#160;</td><th width="60%" align="center">Part&#160;II.&#160;Extensions and libraries</th><td width="20%" align="right">&#160;<a accesskey="n" href="ch20s02.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&#160;5.&#160;Memory Management"><div class="titlepage"><div><div><h2 class="title"><a name="ext.memory"></a>Chapter&#160;5.&#160;Memory Management</h2></div></div></div><div class="toc"><dl><dt><span class="section"><a href="ch20.html#ext.memory.intro">5.1. Introduction</a></span></dt><dt><span class="section"><a href="ch20s02.html">5.2. Boehm-Weiser garbage collector</a></span></dt><dt><span class="section"><a href="ch20s03.html">5.3. Memory limits</a></span></dt><dt><span class="section"><a href="ch20s04.html">5.4. Memory Conditions</a></span></dt><dt><span class="section"><a href="ch20s05.html">5.5. Finalization</a></span></dt><dt><span class="section"><a href="ch20s06.html">5.6. Memory Management Reference</a></span></dt><dd><dl><dt><span class="refentrytitle"><a href="re29.html"><code class="classname">ext:stack-overflow</code></a></span><span class="refpurpose"> &#8212; Stack overflow condition.</span></dt><dt><span class="refentrytitle"><a href="re30.html"><code class="classname">ext:storage-exhausted</code></a></span><span class="refpurpose"> &#8212; Memory overflow condition.</span></dt><dt><span class="refentrytitle"><a href="re31.html"><code class="function">ext:get-finalizer</code></a></span><span class="refpurpose"> &#8212; Return finalizer associated to an object.</span></dt><dt><span class="refentrytitle"><a href="re32.html"><code class="function">ext:get-limit</code></a></span><span class="refpurpose"> &#8212; Query a memory or stack limit.</span></dt><dt><span class="refentrytitle"><a href="re33.html"><code class="function">ext:set-finalizer</code></a></span><span class="refpurpose"> &#8212; Associate a finalizer to an object.</span></dt><dt><span class="refentrytitle"><a href="re34.html"><code class="function">ext:set-limit</code></a></span><span class="refpurpose"> &#8212; Set a memory or stack limit.</span></dt></dl></dd></dl></div><div class="section" title="5.1.&#160;Introduction"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="ext.memory.intro"></a>5.1.&#160;Introduction</h2></div></div></div><p><span class="application">ECL</span> relies on the Boehm-Weiser garbage collector for handling
   memory, creating and destroying objects, and handling finalization of
   objects that are no longer reachable. The use of a garbage collector, and in
   particular the use of a portable one, imposes certain restrictions that may
   appear odd for C/C++ programmers.</p><p>In this section we will discuss garbage collection, how <span class="application">ECL</span>
   configures and uses the memory management library, what users may expect,
   how to handle the memory and how to control the process by which objects are
   deleted.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch19s02.html">Prev</a>&#160;</td><td width="20%" align="center"><a accesskey="u" href="pt02.html">Up</a></td><td width="40%" align="right">&#160;<a accesskey="n" href="ch20s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4.2.&#160;MP Reference&#160;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&#160;5.2.&#160;Boehm-Weiser garbage collector</td></tr></table></div></body></html>