summaryrefslogtreecommitdiff
path: root/docs/tutorials/021/mpool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorials/021/mpool.cpp')
-rw-r--r--docs/tutorials/021/mpool.cpp70
1 files changed, 0 insertions, 70 deletions
diff --git a/docs/tutorials/021/mpool.cpp b/docs/tutorials/021/mpool.cpp
deleted file mode 100644
index 99c2cc9fc34..00000000000
--- a/docs/tutorials/021/mpool.cpp
+++ /dev/null
@@ -1,70 +0,0 @@
-
-// $Id$
-
-#include "mpool.h"
-
-#if ! defined(ACE_LACKS_SYSV_SHMEM)
-
-/*
- Set the values of all of the constants. This guarantees that client
- and server don't get confused.
- */
-const int Constants::SEM_KEY_1 = ACE_DEFAULT_SEM_KEY + 1;
-const int Constants::SEM_KEY_2 = ACE_DEFAULT_SEM_KEY + 2;
-
-const int Constants::SHMSZ = 27;
-const char * Constants::SHMDATA = "abcdefghijklmnopqrstuvwxyz";
-
-const char * Constants::PoolName = "SharedMemoryPool";
-const char * Constants::RegionName = "Alphabet";
-
-/*
- We have to create a copy of the _name parameter in case the caller
- has dynamically allocated it. The pool_ is set to NULL & will be
- allocated by the accessor.
- */
-Allocator::Allocator( const char * _name )
- : name_(ACE_OS::strdup(_name)),
- pool_(0)
-{
- if( ! name_ )
- {
- ACE_ERROR ((LM_ERROR, "(%P) %p",
- "Allocator::Allocator cannot strdup pool name" ));
- }
-}
-
-Allocator::~Allocator(void)
-{
- /*
- strdup() uses malloc(), so we must use free() to clean up.
- */
- if( name_ )
- {
- free(name_);
- }
-
- // delete doesn't really care if you give it a NULL pointer.
- delete pool_;
-}
-
-/*
- Allocate the pool. Since we return a reference, we'll be in really
- bad shape if the new fails. This is a great place to throw an
- exception!
- The other concern is thread safety. If two threads call here at
- about the same time, we may create the pool twice. We can't use a
- Singleton because we want to have multiple Allocator instances. The
- Singleton techniques can be used though.
- */
-Allocator::pool_t & Allocator::pool(void)
-{
- if( ! pool_ )
- {
- pool_ = new pool_t( name_ );
- }
-
- return *pool_;
-}
-
-#endif // ACE_LACKS_SYSV_SHMEM