summaryrefslogtreecommitdiff
path: root/docs/tutorials/013/mld.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-06-11 04:43:18 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-06-11 04:43:18 +0000
commitcf80827f0570b103362d4892fd528edea3c63d1b (patch)
tree273baccd72fc05ebc75e239d95ccdfc2aa2e2e08 /docs/tutorials/013/mld.h
parent69803512b371c9ca692937ae71df87b63d60b54f (diff)
downloadATCD-cf80827f0570b103362d4892fd528edea3c63d1b.tar.gz
ChangeLogTag:Thu Jun 10 21:40:03 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'docs/tutorials/013/mld.h')
-rw-r--r--docs/tutorials/013/mld.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/docs/tutorials/013/mld.h b/docs/tutorials/013/mld.h
deleted file mode 100644
index 3fd3995000d..00000000000
--- a/docs/tutorials/013/mld.h
+++ /dev/null
@@ -1,51 +0,0 @@
-
-// $Id$
-
-#ifndef MLD_H
-#define MLD_H
-
-#include "ace/config-all.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Singleton.h"
-#include "ace/Atomic_Op.h"
-#include "ace/Mutex.h"
-
-/*
- This is a cheap memory leak detector. Each class I want to watch over
- contains an mld object. The mld object's ctor increments a global counter
- while the dtor decrements it. If the counter is non-zero when the program
- is ready to exit then there may be a leak.
- */
-
-class mld
-{
-public:
- mld (void);
- ~mld (void);
-
- static int value (void);
-
-protected:
- static ACE_Atomic_Op < ACE_Mutex, int >counter_;
-};
-
-// ================================================
-
-/*
- Just drop 'MLD' anywhere in your class definition to get cheap memory leak
- detection for your class.
- */
-#define MLD mld mld_
-
-/*
- Use 'MLD_COUNTER' in main() to see if things are OK.
- */
-#define MLD_COUNTER mld::value()
-
-// ================================================
-
-#endif