summaryrefslogtreecommitdiff
path: root/examples/System_V_IPC
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-23 16:04:12 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-23 16:04:12 +0000
commitcd755938747721a508099129566e90c38a51b870 (patch)
tree888a37b59f92dd7640beb6049094c07c3fd2f23a /examples/System_V_IPC
parente6abbe6fc23e6ac76adb309bf066b37e08d76ac3 (diff)
downloadATCD-cd755938747721a508099129566e90c38a51b870.tar.gz
change SCCS keywords (in our files only) to RCS keywords
Diffstat (limited to 'examples/System_V_IPC')
-rw-r--r--examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp2
-rw-r--r--examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp2
-rw-r--r--examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp2
-rw-r--r--examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp2
-rw-r--r--examples/System_V_IPC/SV_Message_Queues/test.h2
-rw-r--r--examples/System_V_IPC/SV_Semaphores/Semaphore_Client.cpp2
-rw-r--r--examples/System_V_IPC/SV_Semaphores/Semaphore_Server.cpp2
-rw-r--r--examples/System_V_IPC/SV_Semaphores/Semaphore_Test.h2
-rw-r--r--examples/System_V_IPC/SV_Semaphores/Semaphores.cpp2
-rw-r--r--examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp2
-rw-r--r--examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.h2
11 files changed, 11 insertions, 11 deletions
diff --git a/examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp b/examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp
index 31d56c23e6a..7845fef37f8 100644
--- a/examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp
+++ b/examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp
@@ -1,5 +1,5 @@
#include "ace/SV_Message_Queue.h"
-// @(#)MQ_Client.cpp 1.1 10/18/96
+// $Id$
#include "test.h"
diff --git a/examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp b/examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp
index 1f7729ad4e1..39680dd91bc 100644
--- a/examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp
+++ b/examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp
@@ -1,5 +1,5 @@
#include "ace/Signal.h"
-// @(#)MQ_Server.cpp 1.1 10/18/96
+// $Id$
#include "ace/SV_Message_Queue.h"
#include "test.h"
diff --git a/examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp b/examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp
index 0961f92da6a..e6ed03525d1 100644
--- a/examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp
+++ b/examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp
@@ -1,5 +1,5 @@
#include "ace/Typed_SV_Message_Queue.h"
-// @(#)TMQ_Client.cpp 1.1 10/18/96
+// $Id$
#include "ace/Log_Msg.h"
#include "test.h"
diff --git a/examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp b/examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp
index ab843c830d6..185c630ad4a 100644
--- a/examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp
+++ b/examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp
@@ -1,5 +1,5 @@
#include "ace/Signal.h"
-// @(#)TMQ_Server.cpp 1.1 10/18/96
+// $Id$
#include "ace/Typed_SV_Message_Queue.h"
#include "ace/Log_Msg.h"
diff --git a/examples/System_V_IPC/SV_Message_Queues/test.h b/examples/System_V_IPC/SV_Message_Queues/test.h
index ebfbe3448ac..775a27c4423 100644
--- a/examples/System_V_IPC/SV_Message_Queues/test.h
+++ b/examples/System_V_IPC/SV_Message_Queues/test.h
@@ -1,5 +1,5 @@
/* -*- C++ -*- */
-// @(#)test.h 1.1 10/18/96
+// $Id$
#include "ace/OS.h"
#include "ace/SV_Message.h"
diff --git a/examples/System_V_IPC/SV_Semaphores/Semaphore_Client.cpp b/examples/System_V_IPC/SV_Semaphores/Semaphore_Client.cpp
index 69b414cef0c..b7fe34725e7 100644
--- a/examples/System_V_IPC/SV_Semaphores/Semaphore_Client.cpp
+++ b/examples/System_V_IPC/SV_Semaphores/Semaphore_Client.cpp
@@ -1,5 +1,5 @@
#include "Semaphore_Test.h"
-// @(#)Semaphore_Client.cpp 1.1 10/18/96
+// $Id$
#include "ace/SV_Shared_Memory.h"
#include "ace/SV_Semaphore_Simple.h"
diff --git a/examples/System_V_IPC/SV_Semaphores/Semaphore_Server.cpp b/examples/System_V_IPC/SV_Semaphores/Semaphore_Server.cpp
index 721bb07171e..3dec989ec52 100644
--- a/examples/System_V_IPC/SV_Semaphores/Semaphore_Server.cpp
+++ b/examples/System_V_IPC/SV_Semaphores/Semaphore_Server.cpp
@@ -1,5 +1,5 @@
#include "ace/Log_Msg.h"
-// @(#)Semaphore_Server.cpp 1.1 10/18/96
+// $Id$
#include "ace/SV_Shared_Memory.h"
#include "ace/SV_Semaphore_Simple.h"
diff --git a/examples/System_V_IPC/SV_Semaphores/Semaphore_Test.h b/examples/System_V_IPC/SV_Semaphores/Semaphore_Test.h
index 07bc3e9ecec..72aab815ff8 100644
--- a/examples/System_V_IPC/SV_Semaphores/Semaphore_Test.h
+++ b/examples/System_V_IPC/SV_Semaphores/Semaphore_Test.h
@@ -1,5 +1,5 @@
/* -*- C++ -*- */
-// @(#)Semaphore_Test.h 1.1 10/18/96
+// $Id$
#include "ace/Log_Msg.h"
diff --git a/examples/System_V_IPC/SV_Semaphores/Semaphores.cpp b/examples/System_V_IPC/SV_Semaphores/Semaphores.cpp
index 923bd142cc3..b98c664883b 100644
--- a/examples/System_V_IPC/SV_Semaphores/Semaphores.cpp
+++ b/examples/System_V_IPC/SV_Semaphores/Semaphores.cpp
@@ -1,5 +1,5 @@
// Illustrates the use of the Semaphore_Complex class. Note that it
-// @(#)Semaphores.cpp 1.1 10/18/96
+// $Id$
// doesn't matter whether the parent or the child creates the
// semaphore since Semaphore_Complex will correctly serialize the
diff --git a/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp b/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp
index 3b1fa48ceb5..d980ae1b62c 100644
--- a/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp
+++ b/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp
@@ -1,5 +1,5 @@
#include "ace/SV_Shared_Memory.h"
-// @(#)SV_Shared_Memory_Test.cpp 1.1 10/18/96
+// $Id$
#include "SV_Shared_Memory_Test.h"
diff --git a/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.h b/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.h
index 795e9180f65..7712e016a09 100644
--- a/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.h
+++ b/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.h
@@ -1,5 +1,5 @@
/* -*- C++ -*- */
-// @(#)SV_Shared_Memory_Test.h 1.1 10/18/96
+// $Id$
#include "ace/OS.h"
#define SHMSZ 27