summaryrefslogtreecommitdiff
path: root/ace/Memory_Pool.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-08 06:21:24 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-08 06:21:24 +0000
commit902949f767e3510138644fda8ba93d2b1ab6f7a8 (patch)
tree42eeffdbd4af0c3045f0e0f03e964fad27af62c8 /ace/Memory_Pool.cpp
parente986ec75fc0edc25ee124df915d50e7c1013f060 (diff)
downloadATCD-902949f767e3510138644fda8ba93d2b1ab6f7a8.tar.gz
ChangeLogTag:Thu Jul 8 00:23:02 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Memory_Pool.cpp')
-rw-r--r--ace/Memory_Pool.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp
index 1d07027de11..785c52b50d8 100644
--- a/ace/Memory_Pool.cpp
+++ b/ace/Memory_Pool.cpp
@@ -80,8 +80,7 @@ ACE_MMAP_Memory_Pool::release (void)
ACE_TRACE ("ACE_MMAP_Memory_Pool::release");
#if defined (ACE_HAS_POSITION_INDEPENDENT_MALLOC)
- ACE_POSITION_INDEPENDENT_REPOSITORY::instance ()->unbind (this->mmap_.addr (),
- this->mmap_.size ());
+ ACE_BASED_POINTER_REPOSITORY::instance ()->unbind (this->mmap_.addr ());
#endif /* ACE_HAS_POSITION_INDEPENDENT_MALLOC */
this->mmap_.remove ();
@@ -265,7 +264,7 @@ ACE_MMAP_Memory_Pool::map_file (off_t map_size)
else
{
#if defined (ACE_HAS_POSITION_INDEPENDENT_MALLOC)
- ACE_POSITION_INDEPENDENT_REPOSITORY::instance ()->bind (this->base_addr_,
+ ACE_BASED_POINTER_REPOSITORY::instance ()->bind (this->base_addr_,
map_size);
#endif /* ACE_HAS_POSITION_INDEPENDENT_MALLOC */
return 0;