summaryrefslogtreecommitdiff
path: root/examples/Misc
diff options
context:
space:
mode:
authorgonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 22:55:22 +0000
committergonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 22:55:22 +0000
commit2dcdd3b6a1806cf231a4ccdca59a106132d9e1be (patch)
tree7774cf0fef5bbe805a0e0817bb55ff8ad5489c7f /examples/Misc
parent85b30f9d091af39e1e61fa92ce8f351ee520bc31 (diff)
downloadATCD-2dcdd3b6a1806cf231a4ccdca59a106132d9e1be.tar.gz
Added ACE_RCSID to examples/
Diffstat (limited to 'examples/Misc')
-rw-r--r--examples/Misc/test_XtReactor1.cpp2
-rw-r--r--examples/Misc/test_XtReactor2.cpp2
-rw-r--r--examples/Misc/test_dump.cpp2
-rw-r--r--examples/Misc/test_get_opt.cpp1
-rw-r--r--examples/Misc/test_profile_timer.cpp3
-rw-r--r--examples/Misc/test_read_buffer.cpp2
-rw-r--r--examples/Misc/test_set.cpp2
-rw-r--r--examples/Misc/test_sstring.cpp2
-rw-r--r--examples/Misc/test_trace.cpp4
9 files changed, 18 insertions, 2 deletions
diff --git a/examples/Misc/test_XtReactor1.cpp b/examples/Misc/test_XtReactor1.cpp
index f6b57acaf5e..d2d94036285 100644
--- a/examples/Misc/test_XtReactor1.cpp
+++ b/examples/Misc/test_XtReactor1.cpp
@@ -7,6 +7,8 @@
#include "ace/Reactor.h"
#include "ace/Message_Block.h"
+ACE_RCSID(Misc, test_XtReactor1, "$Id$")
+
#if defined (ACE_HAS_XT)
#define String XtString
#include <Xm/PushB.h>
diff --git a/examples/Misc/test_XtReactor2.cpp b/examples/Misc/test_XtReactor2.cpp
index 3b153e32de4..a2412cae18d 100644
--- a/examples/Misc/test_XtReactor2.cpp
+++ b/examples/Misc/test_XtReactor2.cpp
@@ -7,6 +7,8 @@
#include "ace/Reactor.h"
#include "ace/Message_Block.h"
+ACE_RCSID(Misc, test_XtReactor2, "$Id$")
+
#if defined (ACE_HAS_XT)
#define String XtString
#include <Xm/PushB.h>
diff --git a/examples/Misc/test_dump.cpp b/examples/Misc/test_dump.cpp
index c9a59dd9ce6..a15eac9360c 100644
--- a/examples/Misc/test_dump.cpp
+++ b/examples/Misc/test_dump.cpp
@@ -6,6 +6,8 @@
#include "ace/Dump.h"
+ACE_RCSID(Misc, test_dump, "$Id$")
+
class SOCK
{
public:
diff --git a/examples/Misc/test_get_opt.cpp b/examples/Misc/test_get_opt.cpp
index c68928b6e57..ba6f0c8af1f 100644
--- a/examples/Misc/test_get_opt.cpp
+++ b/examples/Misc/test_get_opt.cpp
@@ -4,6 +4,7 @@
#include "ace/Get_Opt.h"
+ACE_RCSID(Misc, test_get_opt, "$Id$")
int
main (int argc, char *argv[])
diff --git a/examples/Misc/test_profile_timer.cpp b/examples/Misc/test_profile_timer.cpp
index 366876a42a5..3da092e9954 100644
--- a/examples/Misc/test_profile_timer.cpp
+++ b/examples/Misc/test_profile_timer.cpp
@@ -1,7 +1,8 @@
-#include "ace/Profile_Timer.h"
// $Id$
+#include "ace/Profile_Timer.h"
+ACE_RCSID(Misc, test_profile_timer, "$Id$")
static const int DEFAULT_ITERATIONS = 100000000;
diff --git a/examples/Misc/test_read_buffer.cpp b/examples/Misc/test_read_buffer.cpp
index 005509d3896..59bfe4f92b4 100644
--- a/examples/Misc/test_read_buffer.cpp
+++ b/examples/Misc/test_read_buffer.cpp
@@ -3,6 +3,8 @@
#include "ace/Service_Config.h"
#include "ace/Read_Buffer.h"
+ACE_RCSID(Misc, test_read_buffer, "$Id$")
+
int
main (int argc, char *argv[])
{
diff --git a/examples/Misc/test_set.cpp b/examples/Misc/test_set.cpp
index b06f3d0fd76..4ec0cb948ba 100644
--- a/examples/Misc/test_set.cpp
+++ b/examples/Misc/test_set.cpp
@@ -2,6 +2,8 @@
#include "ace/Containers.h"
+ACE_RCSID(Misc, test_set, "$Id$")
+
int
main (int, char *[])
{
diff --git a/examples/Misc/test_sstring.cpp b/examples/Misc/test_sstring.cpp
index 55e797c3851..4764d907784 100644
--- a/examples/Misc/test_sstring.cpp
+++ b/examples/Misc/test_sstring.cpp
@@ -2,6 +2,8 @@
#include "ace/SString.h"
+ACE_RCSID(Misc, test_sstring, "$Id$")
+
int
main (int, char *[])
{
diff --git a/examples/Misc/test_trace.cpp b/examples/Misc/test_trace.cpp
index 16c7cd627e7..0163224c6ea 100644
--- a/examples/Misc/test_trace.cpp
+++ b/examples/Misc/test_trace.cpp
@@ -1,11 +1,13 @@
-// Enable tracing
// $Id$
+// Enable tracing
#define ACE_NTRACE 0
#include "ace/Thread.h"
#include "ace/Signal.h"
+ACE_RCSID(Misc, test_trace, "$Id$")
+
static void
foo (int max_depth)
{