summaryrefslogtreecommitdiff
path: root/ACE/examples/Shared_Malloc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Shared_Malloc')
-rw-r--r--ACE/examples/Shared_Malloc/Malloc.cpp2
-rw-r--r--ACE/examples/Shared_Malloc/Malloc.h2
-rw-r--r--ACE/examples/Shared_Malloc/Options.cpp2
-rw-r--r--ACE/examples/Shared_Malloc/Options.h2
-rw-r--r--ACE/examples/Shared_Malloc/Shared_Malloc.mpc2
-rw-r--r--ACE/examples/Shared_Malloc/test_malloc.cpp2
-rw-r--r--ACE/examples/Shared_Malloc/test_multiple_mallocs.cpp2
-rw-r--r--ACE/examples/Shared_Malloc/test_persistence.cpp2
-rw-r--r--ACE/examples/Shared_Malloc/test_position_independent_malloc.cpp2
-rw-r--r--ACE/examples/Shared_Malloc/test_position_independent_malloc.h1
10 files changed, 0 insertions, 19 deletions
diff --git a/ACE/examples/Shared_Malloc/Malloc.cpp b/ACE/examples/Shared_Malloc/Malloc.cpp
index 2236e2ec6c0..5cc8afe9635 100644
--- a/ACE/examples/Shared_Malloc/Malloc.cpp
+++ b/ACE/examples/Shared_Malloc/Malloc.cpp
@@ -1,5 +1,3 @@
-// $Id$
-
#include "Options.h"
#include "Malloc.h"
#include "ace/MMAP_Memory_Pool.h"
diff --git a/ACE/examples/Shared_Malloc/Malloc.h b/ACE/examples/Shared_Malloc/Malloc.h
index c88cead8bfb..2cce26fb98e 100644
--- a/ACE/examples/Shared_Malloc/Malloc.h
+++ b/ACE/examples/Shared_Malloc/Malloc.h
@@ -1,6 +1,4 @@
/* -*- C++ -*- */
-// $Id$
-
#ifndef MY_MALLOC_H
#define MY_MALLOC_H
diff --git a/ACE/examples/Shared_Malloc/Options.cpp b/ACE/examples/Shared_Malloc/Options.cpp
index 44bf59b0aa6..4e4a8c300ba 100644
--- a/ACE/examples/Shared_Malloc/Options.cpp
+++ b/ACE/examples/Shared_Malloc/Options.cpp
@@ -1,5 +1,3 @@
-// $Id$
-
#include "ace/Get_Opt.h"
#include "Options.h"
#include "ace/Log_Msg.h"
diff --git a/ACE/examples/Shared_Malloc/Options.h b/ACE/examples/Shared_Malloc/Options.h
index 67956d80cc3..0c23fd3d894 100644
--- a/ACE/examples/Shared_Malloc/Options.h
+++ b/ACE/examples/Shared_Malloc/Options.h
@@ -1,6 +1,4 @@
/* -*- C++ -*- */
-// $Id$
-
#ifndef _OPTIONS
#define _OPTIONS
diff --git a/ACE/examples/Shared_Malloc/Shared_Malloc.mpc b/ACE/examples/Shared_Malloc/Shared_Malloc.mpc
index 3f30d3bd6f0..3bb69ebc0ae 100644
--- a/ACE/examples/Shared_Malloc/Shared_Malloc.mpc
+++ b/ACE/examples/Shared_Malloc/Shared_Malloc.mpc
@@ -1,6 +1,4 @@
// -*- MPC -*-
-// $Id$
-
project : aceexe, avoids_ace_for_tao {
exename = malloc
Source_Files {
diff --git a/ACE/examples/Shared_Malloc/test_malloc.cpp b/ACE/examples/Shared_Malloc/test_malloc.cpp
index 14df0c19c23..9f68c9eb745 100644
--- a/ACE/examples/Shared_Malloc/test_malloc.cpp
+++ b/ACE/examples/Shared_Malloc/test_malloc.cpp
@@ -1,5 +1,3 @@
-// $Id$
-
// This program tests out all the various ACE_Malloc combinations and
// the ACE_Allocator_Adapter.
diff --git a/ACE/examples/Shared_Malloc/test_multiple_mallocs.cpp b/ACE/examples/Shared_Malloc/test_multiple_mallocs.cpp
index 9a5b98bbb24..11121675bbd 100644
--- a/ACE/examples/Shared_Malloc/test_multiple_mallocs.cpp
+++ b/ACE/examples/Shared_Malloc/test_multiple_mallocs.cpp
@@ -1,5 +1,3 @@
-// $Id$
-
// Test the capability of <ACE_Malloc> to handle multiple mallocs
// rooted at different base addresses.
diff --git a/ACE/examples/Shared_Malloc/test_persistence.cpp b/ACE/examples/Shared_Malloc/test_persistence.cpp
index bc714270aae..11d67c806b8 100644
--- a/ACE/examples/Shared_Malloc/test_persistence.cpp
+++ b/ACE/examples/Shared_Malloc/test_persistence.cpp
@@ -1,5 +1,3 @@
-// $Id$
-
// Test the persistence capabilities of <ACE_Malloc> when configured
// for mmap-based shared memory management.
diff --git a/ACE/examples/Shared_Malloc/test_position_independent_malloc.cpp b/ACE/examples/Shared_Malloc/test_position_independent_malloc.cpp
index 511c198b2b5..cf74104803f 100644
--- a/ACE/examples/Shared_Malloc/test_position_independent_malloc.cpp
+++ b/ACE/examples/Shared_Malloc/test_position_independent_malloc.cpp
@@ -1,5 +1,3 @@
-// $Id$
-
// Test the capability of the "position-independent" <ACE_Malloc> to
// handle a single malloc that can be rooted at different base
// addresses each time it's used. The actual backing store used by
diff --git a/ACE/examples/Shared_Malloc/test_position_independent_malloc.h b/ACE/examples/Shared_Malloc/test_position_independent_malloc.h
index 2785a386045..d01985ce0da 100644
--- a/ACE/examples/Shared_Malloc/test_position_independent_malloc.h
+++ b/ACE/examples/Shared_Malloc/test_position_independent_malloc.h
@@ -1,4 +1,3 @@
-// $Id$
//
// Define struct used in test_position_independent_malloc.cpp - needs
// to be in a separate file for template generation on AIX IBM C++.