summaryrefslogtreecommitdiffstats
path: root/c/src/exec
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec')
-rw-r--r--c/src/exec/libcsupport/include/sys/utsname.h1
-rw-r--r--c/src/exec/libcsupport/src/hosterr.c1
-rw-r--r--c/src/exec/libcsupport/src/unixlibc.c4
-rw-r--r--c/src/exec/libcsupport/src/utsname.c1
-rw-r--r--c/src/exec/posix/base/aio.h1
-rw-r--r--c/src/exec/posix/base/devctl.h1
-rw-r--r--c/src/exec/posix/base/intr.h2
-rw-r--r--c/src/exec/posix/base/limits.h2
-rw-r--r--c/src/exec/posix/base/mqueue.h1
-rw-r--r--c/src/exec/posix/base/pthread.h1
-rw-r--r--c/src/exec/posix/base/sched.h1
-rw-r--r--c/src/exec/posix/base/semaphore.h1
-rw-r--r--c/src/exec/posix/base/unistd.h1
-rw-r--r--c/src/exec/posix/headers/cancel.h1
-rw-r--r--c/src/exec/posix/headers/threadsup.h1
-rw-r--r--c/src/exec/posix/include/aio.h1
-rw-r--r--c/src/exec/posix/include/devctl.h1
-rw-r--r--c/src/exec/posix/include/intr.h2
-rw-r--r--c/src/exec/posix/include/limits.h2
-rw-r--r--c/src/exec/posix/include/mqueue.h1
-rw-r--r--c/src/exec/posix/include/pthread.h1
-rw-r--r--c/src/exec/posix/include/rtems/posix/cancel.h1
-rw-r--r--c/src/exec/posix/include/rtems/posix/threadsup.h1
-rw-r--r--c/src/exec/posix/include/sched.h1
-rw-r--r--c/src/exec/posix/include/semaphore.h1
-rw-r--r--c/src/exec/posix/include/sys/utsname.h1
-rw-r--r--c/src/exec/posix/include/unistd.h1
-rw-r--r--c/src/exec/posix/inline/priority.inl3
-rw-r--r--c/src/exec/posix/inline/rtems/posix/priority.inl3
-rw-r--r--c/src/exec/posix/src/aio.c1
-rw-r--r--c/src/exec/posix/src/cancel.c1
-rw-r--r--c/src/exec/posix/src/cond.c1
-rw-r--r--c/src/exec/posix/src/devctl.c1
-rw-r--r--c/src/exec/posix/src/intr.c2
-rw-r--r--c/src/exec/posix/src/key.c1
-rw-r--r--c/src/exec/posix/src/mqueue.c2
-rw-r--r--c/src/exec/posix/src/mutex.c1
-rw-r--r--c/src/exec/posix/src/psignal.c1
-rw-r--r--c/src/exec/posix/src/pthread.c1
-rw-r--r--c/src/exec/posix/src/sched.c1
-rw-r--r--c/src/exec/posix/src/semaphore.c1
-rw-r--r--c/src/exec/posix/src/time.c1
-rw-r--r--c/src/exec/posix/src/types.c1
-rw-r--r--c/src/exec/posix/src/unistd.c1
-rw-r--r--c/src/exec/posix/src/utsname.c1
-rw-r--r--c/src/exec/posix/sys/utsname.h1
-rw-r--r--c/src/exec/score/cpu/hppa1.1/cpu.c2
-rw-r--r--c/src/exec/score/cpu/hppa1.1/cpu.h2
-rw-r--r--c/src/exec/score/cpu/hppa1.1/cpu_asm.s2
-rw-r--r--c/src/exec/score/cpu/hppa1.1/hppa.h2
-rw-r--r--c/src/exec/score/cpu/m68k/qsm.h3
-rw-r--r--c/src/exec/score/cpu/m68k/sim.h3
-rw-r--r--c/src/exec/score/cpu/powerpc/README6
-rw-r--r--c/src/exec/score/cpu/powerpc/TODO4
-rw-r--r--c/src/exec/score/cpu/powerpc/cpu.c1
-rw-r--r--c/src/exec/score/cpu/powerpc/cpu.h1
-rw-r--r--c/src/exec/score/cpu/powerpc/cpu_asm.s2
-rw-r--r--c/src/exec/score/cpu/powerpc/irq_stub.s2
-rw-r--r--c/src/exec/score/cpu/powerpc/ppc.h1
-rw-r--r--c/src/exec/score/cpu/powerpc/ppctypes.h2
-rw-r--r--c/src/exec/score/cpu/powerpc/rtems.s1
61 files changed, 87 insertions, 6 deletions
diff --git a/c/src/exec/libcsupport/include/sys/utsname.h b/c/src/exec/libcsupport/include/sys/utsname.h
index 894fe828b4..ca15230d40 100644
--- a/c/src/exec/libcsupport/include/sys/utsname.h
+++ b/c/src/exec/libcsupport/include/sys/utsname.h
@@ -1,5 +1,6 @@
/* sys/utsname.h
*
+ * $Id$
*/
#ifndef __POSIX_SYS_UTSNAME_h
diff --git a/c/src/exec/libcsupport/src/hosterr.c b/c/src/exec/libcsupport/src/hosterr.c
index d842cc072a..7fc2ca966e 100644
--- a/c/src/exec/libcsupport/src/hosterr.c
+++ b/c/src/exec/libcsupport/src/hosterr.c
@@ -9,6 +9,7 @@
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
+ * $Id$
*/
#include <rtems.h>
diff --git a/c/src/exec/libcsupport/src/unixlibc.c b/c/src/exec/libcsupport/src/unixlibc.c
index 74b4eea360..2acd4fba8e 100644
--- a/c/src/exec/libcsupport/src/unixlibc.c
+++ b/c/src/exec/libcsupport/src/unixlibc.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#if defined(RTEMS_UNIXLIB)
void libc_init(int reentrant)
diff --git a/c/src/exec/libcsupport/src/utsname.c b/c/src/exec/libcsupport/src/utsname.c
index b3ec71e87f..98b105023e 100644
--- a/c/src/exec/libcsupport/src/utsname.c
+++ b/c/src/exec/libcsupport/src/utsname.c
@@ -1,5 +1,6 @@
/* utsname.c
*
+ * $Id$
*/
#include <stdio.h>
diff --git a/c/src/exec/posix/base/aio.h b/c/src/exec/posix/base/aio.h
index 2fbb8ad925..504559c857 100644
--- a/c/src/exec/posix/base/aio.h
+++ b/c/src/exec/posix/base/aio.h
@@ -1,5 +1,6 @@
/* aio.h
*
+ * $Id$
*/
#ifndef __POSIX_ASYNCHRONOUS_IO_h
diff --git a/c/src/exec/posix/base/devctl.h b/c/src/exec/posix/base/devctl.h
index e3fd39128f..5073b475ee 100644
--- a/c/src/exec/posix/base/devctl.h
+++ b/c/src/exec/posix/base/devctl.h
@@ -1,5 +1,6 @@
/* devctl.h
*
+ * $Id$
*/
#ifndef __POSIX_DEVICE_CONTROL_h
diff --git a/c/src/exec/posix/base/intr.h b/c/src/exec/posix/base/intr.h
index 9394ab22a3..f07d1f9552 100644
--- a/c/src/exec/posix/base/intr.h
+++ b/c/src/exec/posix/base/intr.h
@@ -2,6 +2,8 @@
*
* XXX: It is unclear if the type "intr_t" should be defined when
* _POSIX_INTERRUPT_CONTROL is not.
+ *
+ * $Id$
*/
#ifndef __POSIX_INTERRUPTS_h
diff --git a/c/src/exec/posix/base/limits.h b/c/src/exec/posix/base/limits.h
index 363b955d45..d46500bc36 100644
--- a/c/src/exec/posix/base/limits.h
+++ b/c/src/exec/posix/base/limits.h
@@ -7,6 +7,8 @@
* to segregrate the variables below based on their "class" according
* to our implementation. We also need to set the Run-Time Invariant
* and other related values.
+ *
+ * $Id$
*/
#ifndef __POSIX_LIMITS_h
diff --git a/c/src/exec/posix/base/mqueue.h b/c/src/exec/posix/base/mqueue.h
index f40381c5f5..f1b2250e5c 100644
--- a/c/src/exec/posix/base/mqueue.h
+++ b/c/src/exec/posix/base/mqueue.h
@@ -1,5 +1,6 @@
/* mqueue.h
*
+ * $Id$
*/
#ifndef __POSIX_MESSAGE_QUEUE_h
diff --git a/c/src/exec/posix/base/pthread.h b/c/src/exec/posix/base/pthread.h
index 16e42e73ca..ea9680f3c4 100644
--- a/c/src/exec/posix/base/pthread.h
+++ b/c/src/exec/posix/base/pthread.h
@@ -1,5 +1,6 @@
/* pthread.h
*
+ * $Id$
*/
#ifndef __PTHREAD_h
diff --git a/c/src/exec/posix/base/sched.h b/c/src/exec/posix/base/sched.h
index 415663db6c..1ea27a1634 100644
--- a/c/src/exec/posix/base/sched.h
+++ b/c/src/exec/posix/base/sched.h
@@ -1,5 +1,6 @@
/* sched.h
*
+ * $Id$
*/
diff --git a/c/src/exec/posix/base/semaphore.h b/c/src/exec/posix/base/semaphore.h
index fed03f7da3..0388f91ad9 100644
--- a/c/src/exec/posix/base/semaphore.h
+++ b/c/src/exec/posix/base/semaphore.h
@@ -1,5 +1,6 @@
/* semaphore.h
*
+ * $Id$
*/
#ifndef __POSIX_SEMAPHORE_h
diff --git a/c/src/exec/posix/base/unistd.h b/c/src/exec/posix/base/unistd.h
index b81a8061fa..147e80c11d 100644
--- a/c/src/exec/posix/base/unistd.h
+++ b/c/src/exec/posix/base/unistd.h
@@ -1,5 +1,6 @@
/* unistd.h
*
+ * $Id$
*/
#ifndef __POSIX_UNISTD_h
diff --git a/c/src/exec/posix/headers/cancel.h b/c/src/exec/posix/headers/cancel.h
index de059d317d..e6d80275f4 100644
--- a/c/src/exec/posix/headers/cancel.h
+++ b/c/src/exec/posix/headers/cancel.h
@@ -1,5 +1,6 @@
/* rtems/posix/cancel.h
*
+ * $Id$
*/
#ifndef __RTEMS_POSIX_CANCEL_h
diff --git a/c/src/exec/posix/headers/threadsup.h b/c/src/exec/posix/headers/threadsup.h
index 39a3c9d51a..26643445b4 100644
--- a/c/src/exec/posix/headers/threadsup.h
+++ b/c/src/exec/posix/headers/threadsup.h
@@ -1,5 +1,6 @@
/* threadsup.h
*
+ * $Id$
*/
#ifndef __RTEMS_POSIX_THREAD_SUPPORT_h
diff --git a/c/src/exec/posix/include/aio.h b/c/src/exec/posix/include/aio.h
index 2fbb8ad925..504559c857 100644
--- a/c/src/exec/posix/include/aio.h
+++ b/c/src/exec/posix/include/aio.h
@@ -1,5 +1,6 @@
/* aio.h
*
+ * $Id$
*/
#ifndef __POSIX_ASYNCHRONOUS_IO_h
diff --git a/c/src/exec/posix/include/devctl.h b/c/src/exec/posix/include/devctl.h
index e3fd39128f..5073b475ee 100644
--- a/c/src/exec/posix/include/devctl.h
+++ b/c/src/exec/posix/include/devctl.h
@@ -1,5 +1,6 @@
/* devctl.h
*
+ * $Id$
*/
#ifndef __POSIX_DEVICE_CONTROL_h
diff --git a/c/src/exec/posix/include/intr.h b/c/src/exec/posix/include/intr.h
index 9394ab22a3..f07d1f9552 100644
--- a/c/src/exec/posix/include/intr.h
+++ b/c/src/exec/posix/include/intr.h
@@ -2,6 +2,8 @@
*
* XXX: It is unclear if the type "intr_t" should be defined when
* _POSIX_INTERRUPT_CONTROL is not.
+ *
+ * $Id$
*/
#ifndef __POSIX_INTERRUPTS_h
diff --git a/c/src/exec/posix/include/limits.h b/c/src/exec/posix/include/limits.h
index 363b955d45..d46500bc36 100644
--- a/c/src/exec/posix/include/limits.h
+++ b/c/src/exec/posix/include/limits.h
@@ -7,6 +7,8 @@
* to segregrate the variables below based on their "class" according
* to our implementation. We also need to set the Run-Time Invariant
* and other related values.
+ *
+ * $Id$
*/
#ifndef __POSIX_LIMITS_h
diff --git a/c/src/exec/posix/include/mqueue.h b/c/src/exec/posix/include/mqueue.h
index f40381c5f5..f1b2250e5c 100644
--- a/c/src/exec/posix/include/mqueue.h
+++ b/c/src/exec/posix/include/mqueue.h
@@ -1,5 +1,6 @@
/* mqueue.h
*
+ * $Id$
*/
#ifndef __POSIX_MESSAGE_QUEUE_h
diff --git a/c/src/exec/posix/include/pthread.h b/c/src/exec/posix/include/pthread.h
index 16e42e73ca..ea9680f3c4 100644
--- a/c/src/exec/posix/include/pthread.h
+++ b/c/src/exec/posix/include/pthread.h
@@ -1,5 +1,6 @@
/* pthread.h
*
+ * $Id$
*/
#ifndef __PTHREAD_h
diff --git a/c/src/exec/posix/include/rtems/posix/cancel.h b/c/src/exec/posix/include/rtems/posix/cancel.h
index de059d317d..e6d80275f4 100644
--- a/c/src/exec/posix/include/rtems/posix/cancel.h
+++ b/c/src/exec/posix/include/rtems/posix/cancel.h
@@ -1,5 +1,6 @@
/* rtems/posix/cancel.h
*
+ * $Id$
*/
#ifndef __RTEMS_POSIX_CANCEL_h
diff --git a/c/src/exec/posix/include/rtems/posix/threadsup.h b/c/src/exec/posix/include/rtems/posix/threadsup.h
index 39a3c9d51a..26643445b4 100644
--- a/c/src/exec/posix/include/rtems/posix/threadsup.h
+++ b/c/src/exec/posix/include/rtems/posix/threadsup.h
@@ -1,5 +1,6 @@
/* threadsup.h
*
+ * $Id$
*/
#ifndef __RTEMS_POSIX_THREAD_SUPPORT_h
diff --git a/c/src/exec/posix/include/sched.h b/c/src/exec/posix/include/sched.h
index 415663db6c..1ea27a1634 100644
--- a/c/src/exec/posix/include/sched.h
+++ b/c/src/exec/posix/include/sched.h
@@ -1,5 +1,6 @@
/* sched.h
*
+ * $Id$
*/
diff --git a/c/src/exec/posix/include/semaphore.h b/c/src/exec/posix/include/semaphore.h
index fed03f7da3..0388f91ad9 100644
--- a/c/src/exec/posix/include/semaphore.h
+++ b/c/src/exec/posix/include/semaphore.h
@@ -1,5 +1,6 @@
/* semaphore.h
*
+ * $Id$
*/
#ifndef __POSIX_SEMAPHORE_h
diff --git a/c/src/exec/posix/include/sys/utsname.h b/c/src/exec/posix/include/sys/utsname.h
index 894fe828b4..ca15230d40 100644
--- a/c/src/exec/posix/include/sys/utsname.h
+++ b/c/src/exec/posix/include/sys/utsname.h
@@ -1,5 +1,6 @@
/* sys/utsname.h
*
+ * $Id$
*/
#ifndef __POSIX_SYS_UTSNAME_h
diff --git a/c/src/exec/posix/include/unistd.h b/c/src/exec/posix/include/unistd.h
index b81a8061fa..147e80c11d 100644
--- a/c/src/exec/posix/include/unistd.h
+++ b/c/src/exec/posix/include/unistd.h
@@ -1,5 +1,6 @@
/* unistd.h
*
+ * $Id$
*/
#ifndef __POSIX_UNISTD_h
diff --git a/c/src/exec/posix/inline/priority.inl b/c/src/exec/posix/inline/priority.inl
index 2a61181d46..90dfaead02 100644
--- a/c/src/exec/posix/inline/priority.inl
+++ b/c/src/exec/posix/inline/priority.inl
@@ -1,3 +1,6 @@
+/*
+ * $Id$
+ */
#ifndef __RTEMS_POSIX_PRIORITY_inl
#define __RTEMS_POSIX_PRIORITY_inl
diff --git a/c/src/exec/posix/inline/rtems/posix/priority.inl b/c/src/exec/posix/inline/rtems/posix/priority.inl
index 2a61181d46..90dfaead02 100644
--- a/c/src/exec/posix/inline/rtems/posix/priority.inl
+++ b/c/src/exec/posix/inline/rtems/posix/priority.inl
@@ -1,3 +1,6 @@
+/*
+ * $Id$
+ */
#ifndef __RTEMS_POSIX_PRIORITY_inl
#define __RTEMS_POSIX_PRIORITY_inl
diff --git a/c/src/exec/posix/src/aio.c b/c/src/exec/posix/src/aio.c
index dab31c108f..491c2772cf 100644
--- a/c/src/exec/posix/src/aio.c
+++ b/c/src/exec/posix/src/aio.c
@@ -1,5 +1,6 @@
/* aio.c
*
+ * $Id$
*/
#include <aio.h>
diff --git a/c/src/exec/posix/src/cancel.c b/c/src/exec/posix/src/cancel.c
index 32a9a90890..2ad972c626 100644
--- a/c/src/exec/posix/src/cancel.c
+++ b/c/src/exec/posix/src/cancel.c
@@ -1,5 +1,6 @@
/* cancel.c
*
+ * $Id$
*/
#include <pthread.h>
diff --git a/c/src/exec/posix/src/cond.c b/c/src/exec/posix/src/cond.c
index 061353e858..ed151d8c1d 100644
--- a/c/src/exec/posix/src/cond.c
+++ b/c/src/exec/posix/src/cond.c
@@ -1,5 +1,6 @@
/* cond.c
*
+ * $Id$
*/
#include <pthread.h>
diff --git a/c/src/exec/posix/src/devctl.c b/c/src/exec/posix/src/devctl.c
index e4ff6d3cd8..6581e0296c 100644
--- a/c/src/exec/posix/src/devctl.c
+++ b/c/src/exec/posix/src/devctl.c
@@ -1,5 +1,6 @@
/* devctl.c
*
+ * $Id$
*/
#include <devctl.h>
diff --git a/c/src/exec/posix/src/intr.c b/c/src/exec/posix/src/intr.c
index 4011cf9a91..11fbe6969a 100644
--- a/c/src/exec/posix/src/intr.c
+++ b/c/src/exec/posix/src/intr.c
@@ -3,6 +3,8 @@
* NOTE: Each task has an interrupt semaphore associated with it.
* No matter which interrupt occurs that it has registered,
* the same semaphore is used.
+ *
+ * $Id$
*/
#include <errno.h>
diff --git a/c/src/exec/posix/src/key.c b/c/src/exec/posix/src/key.c
index b92a976c55..3bcc1b5170 100644
--- a/c/src/exec/posix/src/key.c
+++ b/c/src/exec/posix/src/key.c
@@ -1,5 +1,6 @@
/* key.c
*
+ * $Id$
*/
#include <errno.h>
diff --git a/c/src/exec/posix/src/mqueue.c b/c/src/exec/posix/src/mqueue.c
index f531b94754..e175300355 100644
--- a/c/src/exec/posix/src/mqueue.c
+++ b/c/src/exec/posix/src/mqueue.c
@@ -11,6 +11,8 @@
*
* This code ignores the O_RDONLY/O_WRONLY/O_RDWR flag at open
* time.
+ *
+ * $Id$
*/
#include <stdarg.h>
diff --git a/c/src/exec/posix/src/mutex.c b/c/src/exec/posix/src/mutex.c
index 5473d4183c..9ff4acff99 100644
--- a/c/src/exec/posix/src/mutex.c
+++ b/c/src/exec/posix/src/mutex.c
@@ -1,5 +1,6 @@
/* mutex.c
*
+ * $Id$
*/
#include <errno.h>
diff --git a/c/src/exec/posix/src/psignal.c b/c/src/exec/posix/src/psignal.c
index 48701c3880..fb6b410618 100644
--- a/c/src/exec/posix/src/psignal.c
+++ b/c/src/exec/posix/src/psignal.c
@@ -1,5 +1,6 @@
/* signal.c
*
+ * $Id$
*/
#include <signal.h>
diff --git a/c/src/exec/posix/src/pthread.c b/c/src/exec/posix/src/pthread.c
index ee1903c3ff..7247586685 100644
--- a/c/src/exec/posix/src/pthread.c
+++ b/c/src/exec/posix/src/pthread.c
@@ -1,5 +1,6 @@
/* pthread.c
*
+ * $Id$
*/
#include <errno.h>
diff --git a/c/src/exec/posix/src/sched.c b/c/src/exec/posix/src/sched.c
index 230fe5dbbb..b131b52397 100644
--- a/c/src/exec/posix/src/sched.c
+++ b/c/src/exec/posix/src/sched.c
@@ -1,5 +1,6 @@
/* sched.c
*
+ * $Id$
*/
#include <sched.h>
diff --git a/c/src/exec/posix/src/semaphore.c b/c/src/exec/posix/src/semaphore.c
index 16d44d1894..e17124152c 100644
--- a/c/src/exec/posix/src/semaphore.c
+++ b/c/src/exec/posix/src/semaphore.c
@@ -1,5 +1,6 @@
/* semaphore.c
*
+ * $Id$
*/
#include <stdarg.h>
diff --git a/c/src/exec/posix/src/time.c b/c/src/exec/posix/src/time.c
index fb99848c67..cfe980793a 100644
--- a/c/src/exec/posix/src/time.c
+++ b/c/src/exec/posix/src/time.c
@@ -1,5 +1,6 @@
/* time.c
*
+ * $Id$
*/
#include <time.h>
diff --git a/c/src/exec/posix/src/types.c b/c/src/exec/posix/src/types.c
index 34b0905e04..e6e743ade5 100644
--- a/c/src/exec/posix/src/types.c
+++ b/c/src/exec/posix/src/types.c
@@ -1,5 +1,6 @@
/* types.c
*
+ * $Id$
*/
#include <sys/types.h>
diff --git a/c/src/exec/posix/src/unistd.c b/c/src/exec/posix/src/unistd.c
index ecda95ebe3..909d89f923 100644
--- a/c/src/exec/posix/src/unistd.c
+++ b/c/src/exec/posix/src/unistd.c
@@ -1,5 +1,6 @@
/* unistd.c
*
+ * $Id$
*/
#include <unistd.h>
diff --git a/c/src/exec/posix/src/utsname.c b/c/src/exec/posix/src/utsname.c
index b3ec71e87f..98b105023e 100644
--- a/c/src/exec/posix/src/utsname.c
+++ b/c/src/exec/posix/src/utsname.c
@@ -1,5 +1,6 @@
/* utsname.c
*
+ * $Id$
*/
#include <stdio.h>
diff --git a/c/src/exec/posix/sys/utsname.h b/c/src/exec/posix/sys/utsname.h
index 894fe828b4..ca15230d40 100644
--- a/c/src/exec/posix/sys/utsname.h
+++ b/c/src/exec/posix/sys/utsname.h
@@ -1,5 +1,6 @@
/* sys/utsname.h
*
+ * $Id$
*/
#ifndef __POSIX_SYS_UTSNAME_h
diff --git a/c/src/exec/score/cpu/hppa1.1/cpu.c b/c/src/exec/score/cpu/hppa1.1/cpu.c
index 09c5d3d54b..4cef979367 100644
--- a/c/src/exec/score/cpu/hppa1.1/cpu.c
+++ b/c/src/exec/score/cpu/hppa1.1/cpu.c
@@ -14,7 +14,7 @@
* Division Incorporated makes no representations about the
* suitability of this software for any purpose.
*
- * cpu.c,v 1.7 1995/09/19 14:49:35 joel Exp
+ * $Id$
*/
#include <rtems/system.h>
diff --git a/c/src/exec/score/cpu/hppa1.1/cpu.h b/c/src/exec/score/cpu/hppa1.1/cpu.h
index caeee7c8ff..67e7f5b89c 100644
--- a/c/src/exec/score/cpu/hppa1.1/cpu.h
+++ b/c/src/exec/score/cpu/hppa1.1/cpu.h
@@ -20,7 +20,7 @@
* Note:
* This file is included by both C and assembler code ( -DASM )
*
- * cpu.h,v 1.5 1995/09/11 19:24:10 joel Exp
+ * $Id$
*/
#ifndef __CPU_h
diff --git a/c/src/exec/score/cpu/hppa1.1/cpu_asm.s b/c/src/exec/score/cpu/hppa1.1/cpu_asm.s
index ea7c879183..b14eb7f88f 100644
--- a/c/src/exec/score/cpu/hppa1.1/cpu_asm.s
+++ b/c/src/exec/score/cpu/hppa1.1/cpu_asm.s
@@ -24,7 +24,7 @@
# Division Incorporated makes no representations about the
# suitability of this software for any purpose.
#
-# cpu_asm.S,v 1.5 1995/09/19 14:49:36 joel Exp
+# $Id$
#
#include <rtems/core/hppa.h>
diff --git a/c/src/exec/score/cpu/hppa1.1/hppa.h b/c/src/exec/score/cpu/hppa1.1/hppa.h
index 1d9839995a..79f4070f98 100644
--- a/c/src/exec/score/cpu/hppa1.1/hppa.h
+++ b/c/src/exec/score/cpu/hppa1.1/hppa.h
@@ -24,7 +24,7 @@
* Note:
* This file is included by both C and assembler code ( -DASM )
*
- * hppa.h,v 1.4 1995/09/19 14:49:37 joel Exp
+ * $Id$
*/
#ifndef _INCLUDE_HPPA_H
diff --git a/c/src/exec/score/cpu/m68k/qsm.h b/c/src/exec/score/cpu/m68k/qsm.h
index 5cbd1375eb..e1bf33bc12 100644
--- a/c/src/exec/score/cpu/m68k/qsm.h
+++ b/c/src/exec/score/cpu/m68k/qsm.h
@@ -34,7 +34,10 @@
* particular purpose.
*
*------------------------------------------------------------------
+ *
+ * $Id$
*/
+
#ifndef _QSM_H_
#define _QSM_H_
diff --git a/c/src/exec/score/cpu/m68k/sim.h b/c/src/exec/score/cpu/m68k/sim.h
index a4614e5574..fae7fe8783 100644
--- a/c/src/exec/score/cpu/m68k/sim.h
+++ b/c/src/exec/score/cpu/m68k/sim.h
@@ -42,7 +42,10 @@
* particular purpose.
*
*------------------------------------------------------------------
+ *
+ * $Id$
*/
+
#ifndef _SIM_H_
#define _SIM_H_
diff --git a/c/src/exec/score/cpu/powerpc/README b/c/src/exec/score/cpu/powerpc/README
index 92af381241..2c0fb9a707 100644
--- a/c/src/exec/score/cpu/powerpc/README
+++ b/c/src/exec/score/cpu/powerpc/README
@@ -1,3 +1,7 @@
+#
+# $Id$
+#
+
There are various issues regarding this port:
@@ -17,6 +21,8 @@ code. I am seeking a release from IBM for this file. In the
mean time this file is excluded (but still included in the Makefile
as a place-holder).
+NOTE: IBM released the alignment exception handler under generous enough
+ terms where it could be included in this distribution.
2) CPU support.
diff --git a/c/src/exec/score/cpu/powerpc/TODO b/c/src/exec/score/cpu/powerpc/TODO
index b72be4d767..6e3e04e6ca 100644
--- a/c/src/exec/score/cpu/powerpc/TODO
+++ b/c/src/exec/score/cpu/powerpc/TODO
@@ -1,3 +1,7 @@
+#
+# $Id$
+#
+
Todo list:
Maybe decode external interrupts like the HPPA does.
diff --git a/c/src/exec/score/cpu/powerpc/cpu.c b/c/src/exec/score/cpu/powerpc/cpu.c
index 1f8c40f274..e0431f868b 100644
--- a/c/src/exec/score/cpu/powerpc/cpu.c
+++ b/c/src/exec/score/cpu/powerpc/cpu.c
@@ -26,6 +26,7 @@
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
+ * $Id$
*/
#include <rtems/system.h>
diff --git a/c/src/exec/score/cpu/powerpc/cpu.h b/c/src/exec/score/cpu/powerpc/cpu.h
index 7bccbce587..99673952a3 100644
--- a/c/src/exec/score/cpu/powerpc/cpu.h
+++ b/c/src/exec/score/cpu/powerpc/cpu.h
@@ -28,6 +28,7 @@
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
+ * $Id$
*/
#ifndef __CPU_h
diff --git a/c/src/exec/score/cpu/powerpc/cpu_asm.s b/c/src/exec/score/cpu/powerpc/cpu_asm.s
index eb6bf2b1e5..c9ab7a13f5 100644
--- a/c/src/exec/score/cpu/powerpc/cpu_asm.s
+++ b/c/src/exec/score/cpu/powerpc/cpu_asm.s
@@ -28,7 +28,7 @@
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
- * cpu_asm.c,v 1.3 1995/06/07 02:40:23 joel Exp
+ * $Id$
*/
#include "asm.h"
diff --git a/c/src/exec/score/cpu/powerpc/irq_stub.s b/c/src/exec/score/cpu/powerpc/irq_stub.s
index 92e6b43dd2..1ed443d479 100644
--- a/c/src/exec/score/cpu/powerpc/irq_stub.s
+++ b/c/src/exec/score/cpu/powerpc/irq_stub.s
@@ -17,6 +17,8 @@
* software without specific, written prior permission.
* i-cubed limited makes no representations about the suitability
* of this software for any purpose.
+ *
+ * $Id$
*/
/* void __ISR_Handler()
diff --git a/c/src/exec/score/cpu/powerpc/ppc.h b/c/src/exec/score/cpu/powerpc/ppc.h
index 7e9d12875c..c2960a1910 100644
--- a/c/src/exec/score/cpu/powerpc/ppc.h
+++ b/c/src/exec/score/cpu/powerpc/ppc.h
@@ -31,6 +31,7 @@
* Note:
* This file is included by both C and assembler code ( -DASM )
*
+ * $Id$
*/
#ifndef _INCLUDE_PPC_h
diff --git a/c/src/exec/score/cpu/powerpc/ppctypes.h b/c/src/exec/score/cpu/powerpc/ppctypes.h
index 64219dafe5..f6f199cf23 100644
--- a/c/src/exec/score/cpu/powerpc/ppctypes.h
+++ b/c/src/exec/score/cpu/powerpc/ppctypes.h
@@ -28,7 +28,7 @@
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
- * ppctypes.h,v 1.3 1995/05/31 14:57:15 joel Exp
+ * $Id$
*/
#ifndef __PPC_TYPES_h
diff --git a/c/src/exec/score/cpu/powerpc/rtems.s b/c/src/exec/score/cpu/powerpc/rtems.s
index 87d0f093a7..25e955d4ea 100644
--- a/c/src/exec/score/cpu/powerpc/rtems.s
+++ b/c/src/exec/score/cpu/powerpc/rtems.s
@@ -28,6 +28,7 @@
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
+ * $Id$
*/
#include "asm.h"