summaryrefslogtreecommitdiff
path: root/docs/tutorials/021/page01.html
blob: 262bdeac5cc21c6c1ce7933464f681cc937719b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<HTML>
<HEAD>
   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
   <META NAME="Author" CONTENT="James CE Johnson">
   <TITLE>ACE Tutorial 021</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#000FFF" VLINK="#FF0F0F">

<CENTER><B><FONT SIZE=+2>ACE Tutorial 021</FONT></B></CENTER>

<CENTER><B><FONT SIZE=+2>Pooling your memories</FONT></B></CENTER>

<P>
<HR WIDTH="100%">
      The previous two tutorials were very primitive & basic.  They
      showed very simple uses of shared memory and memory mapped
      files.
    <p>
      If we move the level of abstraction up just a bit, the next
      thing we encounter is memory pools.  ACE_Malloc&lt;&gt; provides 
      this to us.
    <p>
      In this tutorial, we'll use ACE_Malloc&lt;&gt; to create a
      memory pool that is sharable between a client and server.  We'll 
      use a memory mapped file to provide the physical storage but
      shared memory works just as well.
<P><HR WIDTH="100%">
<CENTER>[<A HREF="../online-tutorials.html">Tutorial Index</A>] [<A HREF="page02.html">Continue This Tutorial</A>]</CENTER>