summaryrefslogtreecommitdiff
path: root/lib/libpthread
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2003-03-08 08:03:34 +0000
committerlukem <lukem@NetBSD.org>2003-03-08 08:03:34 +0000
commitf043c0fb577c0acd8b1b861fe176167e97ea5cd0 (patch)
treeb4f65b0b47289499b02e39995f9099c669bbff6e /lib/libpthread
parente2d78706262ad79322908353a6794238a57c890d (diff)
add __RCSID()
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/arch/i386/pthread_md.c5
-rw-r--r--lib/libpthread/arch/m68k/pthread_md.c5
-rw-r--r--lib/libpthread/pthread.c7
-rw-r--r--lib/libpthread/pthread_alarms.c5
-rw-r--r--lib/libpthread/pthread_barrier.c5
-rw-r--r--lib/libpthread/pthread_cancelstub.c5
-rw-r--r--lib/libpthread/pthread_cond.c6
-rw-r--r--lib/libpthread/pthread_debug.c5
-rw-r--r--lib/libpthread/pthread_lock.c5
-rw-r--r--lib/libpthread/pthread_mutex.c4
-rw-r--r--lib/libpthread/pthread_run.c4
-rw-r--r--lib/libpthread/pthread_rwlock.c6
-rw-r--r--lib/libpthread/pthread_sa.c5
-rw-r--r--lib/libpthread/pthread_sig.c6
-rw-r--r--lib/libpthread/pthread_sleep.c6
-rw-r--r--lib/libpthread/pthread_specific.c6
-rw-r--r--lib/libpthread/pthread_stack.c5
-rw-r--r--lib/libpthread/sched.c4
-rw-r--r--lib/libpthread/sem.c5
19 files changed, 73 insertions, 26 deletions
diff --git a/lib/libpthread/arch/i386/pthread_md.c b/lib/libpthread/arch/i386/pthread_md.c
index 71790ae56cf..0584a3b9b24 100644
--- a/lib/libpthread/arch/i386/pthread_md.c
+++ b/lib/libpthread/arch/i386/pthread_md.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_md.c,v 1.2 2003/01/18 10:34:18 thorpej Exp $ */
+/* $NetBSD: pthread_md.c,v 1.3 2003/03/08 08:03:37 lukem Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_md.c,v 1.3 2003/03/08 08:03:37 lukem Exp $");
+
#include <sys/param.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
diff --git a/lib/libpthread/arch/m68k/pthread_md.c b/lib/libpthread/arch/m68k/pthread_md.c
index faa55bcad3e..dd777d2a475 100644
--- a/lib/libpthread/arch/m68k/pthread_md.c
+++ b/lib/libpthread/arch/m68k/pthread_md.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_md.c,v 1.2 2003/01/18 10:34:19 thorpej Exp $ */
+/* $NetBSD: pthread_md.c,v 1.3 2003/03/08 08:03:37 lukem Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_md.c,v 1.3 2003/03/08 08:03:37 lukem Exp $");
+
#define __PTHREAD_SIGNAL_PRIVATE
#include <assert.h>
diff --git a/lib/libpthread/pthread.c b/lib/libpthread/pthread.c
index 4fa616407b2..09486f93432 100644
--- a/lib/libpthread/pthread.c
+++ b/lib/libpthread/pthread.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread.c,v 1.13 2003/02/28 18:37:44 nathanw Exp $ */
+/* $NetBSD: pthread.c,v 1.14 2003/03/08 08:03:34 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread.c,v 1.14 2003/03/08 08:03:34 lukem Exp $");
+
#include <err.h>
#include <errno.h>
#include <lwp.h>
@@ -46,8 +49,6 @@
#include <ucontext.h>
#include <unistd.h>
-#include <sys/cdefs.h>
-
#include <sched.h>
#include "pthread.h"
#include "pthread_int.h"
diff --git a/lib/libpthread/pthread_alarms.c b/lib/libpthread/pthread_alarms.c
index b8cb87b5937..8de00803fba 100644
--- a/lib/libpthread/pthread_alarms.c
+++ b/lib/libpthread/pthread_alarms.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_alarms.c,v 1.4 2003/02/15 04:37:04 nathanw Exp $ */
+/* $NetBSD: pthread_alarms.c,v 1.5 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_alarms.c,v 1.5 2003/03/08 08:03:35 lukem Exp $");
+
#include <err.h>
#include <sys/time.h>
#include <stdlib.h>
diff --git a/lib/libpthread/pthread_barrier.c b/lib/libpthread/pthread_barrier.c
index 63bbbd674af..ac1aa4baeb9 100644
--- a/lib/libpthread/pthread_barrier.c
+++ b/lib/libpthread/pthread_barrier.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_barrier.c,v 1.5 2003/02/15 00:52:18 nathanw Exp $ */
+/* $NetBSD: pthread_barrier.c,v 1.6 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001, 2003 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_barrier.c,v 1.6 2003/03/08 08:03:35 lukem Exp $");
+
#include <errno.h>
#include <sys/cdefs.h>
diff --git a/lib/libpthread/pthread_cancelstub.c b/lib/libpthread/pthread_cancelstub.c
index 7d7e4e47cc1..faa2a2ab6a1 100644
--- a/lib/libpthread/pthread_cancelstub.c
+++ b/lib/libpthread/pthread_cancelstub.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_cancelstub.c,v 1.4 2003/02/15 22:15:50 nathanw Exp $ */
+/* $NetBSD: pthread_cancelstub.c,v 1.5 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_cancelstub.c,v 1.5 2003/03/08 08:03:35 lukem Exp $");
+
#include <sys/msg.h>
#include <sys/types.h>
#include <sys/uio.h>
diff --git a/lib/libpthread/pthread_cond.c b/lib/libpthread/pthread_cond.c
index 889aa786495..d7917f46eb4 100644
--- a/lib/libpthread/pthread_cond.c
+++ b/lib/libpthread/pthread_cond.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_cond.c,v 1.7 2003/02/15 04:38:33 nathanw Exp $ */
+/* $NetBSD: pthread_cond.c,v 1.8 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,8 +36,10 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <errno.h>
#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_cond.c,v 1.8 2003/03/08 08:03:35 lukem Exp $");
+
+#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>
diff --git a/lib/libpthread/pthread_debug.c b/lib/libpthread/pthread_debug.c
index 1831a6da177..80d6aa106d9 100644
--- a/lib/libpthread/pthread_debug.c
+++ b/lib/libpthread/pthread_debug.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_debug.c,v 1.3 2003/01/18 18:45:53 christos Exp $ */
+/* $NetBSD: pthread_debug.c,v 1.4 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_debug.c,v 1.4 2003/03/08 08:03:35 lukem Exp $");
+
#include <err.h>
#include <errno.h>
#include <fcntl.h>
diff --git a/lib/libpthread/pthread_lock.c b/lib/libpthread/pthread_lock.c
index 9594fc828a5..8fa81d93bcd 100644
--- a/lib/libpthread/pthread_lock.c
+++ b/lib/libpthread/pthread_lock.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_lock.c,v 1.5 2003/02/15 04:37:04 nathanw Exp $ */
+/* $NetBSD: pthread_lock.c,v 1.6 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_lock.c,v 1.6 2003/03/08 08:03:35 lukem Exp $");
+
#include <sys/param.h>
#include <sys/ras.h>
#include <sys/sysctl.h>
diff --git a/lib/libpthread/pthread_mutex.c b/lib/libpthread/pthread_mutex.c
index 58f140420aa..533a1e2272c 100644
--- a/lib/libpthread/pthread_mutex.c
+++ b/lib/libpthread/pthread_mutex.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_mutex.c,v 1.9 2003/02/15 00:52:18 nathanw Exp $ */
+/* $NetBSD: pthread_mutex.c,v 1.10 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001, 2003 The NetBSD Foundation, Inc.
@@ -37,6 +37,8 @@
*/
#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_mutex.c,v 1.10 2003/03/08 08:03:35 lukem Exp $");
+
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
diff --git a/lib/libpthread/pthread_run.c b/lib/libpthread/pthread_run.c
index 6fab28ca6e7..dc25a6415f1 100644
--- a/lib/libpthread/pthread_run.c
+++ b/lib/libpthread/pthread_run.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_run.c,v 1.7 2003/02/15 04:37:04 nathanw Exp $ */
+/* $NetBSD: pthread_run.c,v 1.8 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_run.c,v 1.8 2003/03/08 08:03:35 lukem Exp $");
#include <ucontext.h>
diff --git a/lib/libpthread/pthread_rwlock.c b/lib/libpthread/pthread_rwlock.c
index a545214c63a..b2943d94ef5 100644
--- a/lib/libpthread/pthread_rwlock.c
+++ b/lib/libpthread/pthread_rwlock.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_rwlock.c,v 1.4 2003/02/15 00:52:18 nathanw Exp $ */
+/* $NetBSD: pthread_rwlock.c,v 1.5 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -36,8 +36,10 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <errno.h>
#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_rwlock.c,v 1.5 2003/03/08 08:03:35 lukem Exp $");
+
+#include <errno.h>
#include "pthread.h"
#include "pthread_int.h"
diff --git a/lib/libpthread/pthread_sa.c b/lib/libpthread/pthread_sa.c
index fd906d167d8..a415584c996 100644
--- a/lib/libpthread/pthread_sa.c
+++ b/lib/libpthread/pthread_sa.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_sa.c,v 1.6 2003/02/15 04:37:04 nathanw Exp $ */
+/* $NetBSD: pthread_sa.c,v 1.7 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_sa.c,v 1.7 2003/03/08 08:03:35 lukem Exp $");
+
#include <err.h>
#include <errno.h>
#include <lwp.h>
diff --git a/lib/libpthread/pthread_sig.c b/lib/libpthread/pthread_sig.c
index cdf65d1f35d..c3b1aa3283a 100644
--- a/lib/libpthread/pthread_sig.c
+++ b/lib/libpthread/pthread_sig.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_sig.c,v 1.10 2003/02/28 17:30:07 lha Exp $ */
+/* $NetBSD: pthread_sig.c,v 1.11 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_sig.c,v 1.11 2003/03/08 08:03:35 lukem Exp $");
+
/* We're interposing a specific version of the signal interface. */
#define __LIBC12_SOURCE__
@@ -50,7 +53,6 @@
#include <string.h> /* for memcpy() */
#include <ucontext.h>
#include <unistd.h>
-#include <sys/cdefs.h>
#include <sys/syscall.h>
#include <sched.h>
diff --git a/lib/libpthread/pthread_sleep.c b/lib/libpthread/pthread_sleep.c
index df21180105f..c2ddc42041a 100644
--- a/lib/libpthread/pthread_sleep.c
+++ b/lib/libpthread/pthread_sleep.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_sleep.c,v 1.1 2003/02/15 22:15:50 nathanw Exp $ */
+/* $NetBSD: pthread_sleep.c,v 1.2 2003/03/08 08:03:36 lukem Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -36,8 +36,10 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <errno.h>
#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_sleep.c,v 1.2 2003/03/08 08:03:36 lukem Exp $");
+
+#include <errno.h>
#include <sys/time.h>
#include "pthread.h"
diff --git a/lib/libpthread/pthread_specific.c b/lib/libpthread/pthread_specific.c
index 894c1f23772..29e1a957727 100644
--- a/lib/libpthread/pthread_specific.c
+++ b/lib/libpthread/pthread_specific.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_specific.c,v 1.5 2003/02/15 04:39:16 nathanw Exp $ */
+/* $NetBSD: pthread_specific.c,v 1.6 2003/03/08 08:03:36 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,9 +36,11 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_specific.c,v 1.6 2003/03/08 08:03:36 lukem Exp $");
+
/* Functions and structures dealing with thread-specific data */
#include <errno.h>
-#include <sys/cdefs.h>
#include "pthread.h"
#include "pthread_int.h"
diff --git a/lib/libpthread/pthread_stack.c b/lib/libpthread/pthread_stack.c
index 83933c84b83..4e5bd6d9767 100644
--- a/lib/libpthread/pthread_stack.c
+++ b/lib/libpthread/pthread_stack.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_stack.c,v 1.6 2003/02/15 00:52:19 nathanw Exp $ */
+/* $NetBSD: pthread_stack.c,v 1.7 2003/03/08 08:03:36 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_stack.c,v 1.7 2003/03/08 08:03:36 lukem Exp $");
+
#include <err.h>
#include <errno.h>
#include <signal.h>
diff --git a/lib/libpthread/sched.c b/lib/libpthread/sched.c
index 8c31647d2b2..1aa0bb7e1da 100644
--- a/lib/libpthread/sched.c
+++ b/lib/libpthread/sched.c
@@ -1,4 +1,4 @@
-/* $NetBSD: sched.c,v 1.2 2003/01/18 10:34:17 thorpej Exp $ */
+/* $NetBSD: sched.c,v 1.3 2003/03/08 08:03:36 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: sched.c,v 1.3 2003/03/08 08:03:36 lukem Exp $");
#include <errno.h>
#include <sched.h>
diff --git a/lib/libpthread/sem.c b/lib/libpthread/sem.c
index e4c919f4e3a..7bdfca6edd4 100644
--- a/lib/libpthread/sem.c
+++ b/lib/libpthread/sem.c
@@ -1,4 +1,4 @@
-/* $NetBSD: sem.c,v 1.5 2003/01/24 01:54:02 thorpej Exp $ */
+/* $NetBSD: sem.c,v 1.6 2003/03/08 08:03:36 lukem Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -65,6 +65,9 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: sem.c,v 1.6 2003/03/08 08:03:36 lukem Exp $");
+
#include <sys/types.h>
#include <sys/ksem.h>
#include <sys/queue.h>