summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/src')
-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
16 files changed, 18 insertions, 0 deletions
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>