$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [Boost.Pool] TR1?
From: Phil Bouchard (philippe_at_[hidden])
Date: 2011-04-13 02:55:58
On 4/12/2011 10:58 PM, Phil Bouchard wrote:
> On 4/12/2011 9:18 PM, Phil Bouchard wrote:
>>
>> It looks like the data, heap and stack pools in ::process will simply
>> need to be contiguous.
>
> Any objections?
Perhaps static data members would be a better idea than what I
previously suggested:
struct process
{
static pool stack;
static pool heap;
static pool data;
};
This way the location of the pools wouldn't necessary need to be in the
order they are declared. But this is out of topic here, thanks for the
clarifications.
-Phil