Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib add __RCSID()
details: https://anonhg.NetBSD.org/src/rev/c5e107be124f
branches: trunk
changeset: 544006:c5e107be124f
user: lukem <lukem%NetBSD.org@localhost>
date: Sat Mar 08 08:03:34 2003 +0000
description:
add __RCSID()
diffstat:
lib/libpthread/arch/i386/pthread_md.c | 5 ++++-
lib/libpthread/arch/m68k/pthread_md.c | 5 ++++-
lib/libpthread/pthread.c | 7 ++++---
lib/libpthread/pthread_alarms.c | 5 ++++-
lib/libpthread/pthread_barrier.c | 5 ++++-
lib/libpthread/pthread_cancelstub.c | 5 ++++-
lib/libpthread/pthread_cond.c | 6 ++++--
lib/libpthread/pthread_debug.c | 5 ++++-
lib/libpthread/pthread_lock.c | 5 ++++-
lib/libpthread/pthread_mutex.c | 4 +++-
lib/libpthread/pthread_run.c | 4 +++-
lib/libpthread/pthread_rwlock.c | 6 ++++--
lib/libpthread/pthread_sa.c | 5 ++++-
lib/libpthread/pthread_sig.c | 6 ++++--
lib/libpthread/pthread_sleep.c | 6 ++++--
lib/libpthread/pthread_specific.c | 6 ++++--
lib/libpthread/pthread_stack.c | 5 ++++-
lib/libpthread/sched.c | 4 +++-
lib/libpthread/sem.c | 5 ++++-
lib/libpthread_dbg/pthread_dbg.c | 5 ++++-
20 files changed, 77 insertions(+), 27 deletions(-)
diffs (truncated from 403 to 300 lines):
diff -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/arch/i386/pthread_md.c
--- a/lib/libpthread/arch/i386/pthread_md.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/arch/i386/pthread_md.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/arch/m68k/pthread_md.c
--- a/lib/libpthread/arch/m68k/pthread_md.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/arch/m68k/pthread_md.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread.c
--- a/lib/libpthread/pthread.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_alarms.c
--- a/lib/libpthread/pthread_alarms.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_alarms.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_barrier.c
--- a/lib/libpthread/pthread_barrier.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_barrier.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_cancelstub.c
--- a/lib/libpthread/pthread_cancelstub.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_cancelstub.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_cond.c
--- a/lib/libpthread/pthread_cond.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_cond.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_cond.c,v 1.8 2003/03/08 08:03:35 lukem Exp $");
+
#include <errno.h>
-#include <sys/cdefs.h>
#include <sys/time.h>
#include <sys/types.h>
diff -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_debug.c
--- a/lib/libpthread/pthread_debug.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_debug.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_lock.c
--- a/lib/libpthread/pthread_lock.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_lock.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_mutex.c
--- a/lib/libpthread/pthread_mutex.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_mutex.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_run.c
--- a/lib/libpthread/pthread_run.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_run.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_rwlock.c
--- a/lib/libpthread/pthread_rwlock.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_rwlock.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_rwlock.c,v 1.5 2003/03/08 08:03:35 lukem Exp $");
+
#include <errno.h>
-#include <sys/cdefs.h>
#include "pthread.h"
#include "pthread_int.h"
diff -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_sa.c
--- a/lib/libpthread/pthread_sa.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_sa.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_sig.c
--- a/lib/libpthread/pthread_sig.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_sig.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 -r 0b7f49ad2c2f -r c5e107be124f lib/libpthread/pthread_sleep.c
--- a/lib/libpthread/pthread_sleep.c Sat Mar 08 07:42:33 2003 +0000
+++ b/lib/libpthread/pthread_sleep.c Sat Mar 08 08:03:34 2003 +0000
@@ -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 <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_sleep.c,v 1.2 2003/03/08 08:03:36 lukem Exp $");
Home |
Main Index |
Thread Index |
Old Index