diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-09-12 22:41:01 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-09-12 22:41:01 +0000 |
commit | 4a4d4f0d33943c9f50c0d04fbcca2206eaaefcf7 (patch) | |
tree | 3a751692608cf09463aef1381fb444a9706877a8 /ace/Memory_Pool.h | |
parent | ade18e247821c137dd5c1aa93edb74b9b4ee2364 (diff) | |
download | ATCD-4a4d4f0d33943c9f50c0d04fbcca2206eaaefcf7.tar.gz |
ChangeLogTag:Thu Sep 12 17:38:10 2002 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'ace/Memory_Pool.h')
-rw-r--r-- | ace/Memory_Pool.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Memory_Pool.h b/ace/Memory_Pool.h index 7ad46a3255e..c12ed5c517a 100644 --- a/ace/Memory_Pool.h +++ b/ace/Memory_Pool.h @@ -70,7 +70,7 @@ public: size_t &rounded_bytes); /// Instruct the memory pool to release all of its resources. - virtual int release (void); + virtual int release (int destroy = 1); /** * Sync <len> bytes of the memory region to the backing store @@ -186,7 +186,7 @@ public: size_t &rounded_bytes); /// Instruct the memory pool to release all of its resources. - virtual int release (void); + virtual int release (int destroy = 1); /// Sync the memory region to the backing store starting at /// <this->base_addr_>. @@ -324,7 +324,7 @@ public: size_t &rounded_bytes); /// Instruct the memory pool to release all of its resources. - virtual int release (void); + virtual int release (int destroy = 1); /** * Sync <len> bytes of the memory region to the backing store @@ -504,7 +504,7 @@ public: size_t &rounded_bytes); /// Instruct the memory pool to release all of its resources. - virtual int release (void); + virtual int release (int destroy = 1); /// Sync the memory region to the backing store starting at /// <this->base_addr_>. @@ -693,7 +693,7 @@ public: size_t &rounded_bytes); /// Instruct the memory pool to release all of its resources. - int release (void); + int release (int destroy = 1); /** * Win32 Structural exception selector. The return value decides |