summaryrefslogtreecommitdiff
path: root/ace/Malloc.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-08 19:33:30 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-08 19:33:30 +0000
commit71adda65f010e3d13681b972a127fce991dfae20 (patch)
tree30fc15b2954b362145acd43887b13952a2d7a721 /ace/Malloc.cpp
parent50b228313c3efb5b70b5bdbd40633cfe3dcf27aa (diff)
downloadATCD-71adda65f010e3d13681b972a127fce991dfae20.tar.gz
cleaned up comments
Diffstat (limited to 'ace/Malloc.cpp')
-rw-r--r--ace/Malloc.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ace/Malloc.cpp b/ace/Malloc.cpp
index cd85f0a9061..9f630abac94 100644
--- a/ace/Malloc.cpp
+++ b/ace/Malloc.cpp
@@ -77,17 +77,17 @@ ACE_Allocator::instance (void)
// Have a seat. We want to avoid ever having to delete the
// ACE_Allocator instance, to avoid shutdown order
// dependencies. ACE_New_Allocator never needs to be
- // destroyed: it's destructor is empty and its instance
+ // destroyed: its destructor is empty and its instance
// doesn't have any state. Therefore, sizeof
// ACE_New_Allocator is equal to sizeof void *. It's
// instance just contains a pointer to its virtual function
// table.
//
- // So, we allocation space for the ACE_New_Allocator
- // instance in the data segment. Because its size is the
- // same as that of a pointer, we allocate it as a pointer so
- // that it doesn't get constructed statically. We never
- // bother to destroy it.
+ // So, we allocate space for the ACE_New_Allocator instance
+ // in the data segment. Because its size is the same as
+ // that of a pointer, we allocate it as a pointer so that it
+ // doesn't get constructed statically. We never bother to
+ // destroy it.
static void *allocator_instance = 0;
// Check this critical assumption . . .