summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>2005-03-02 11:05:34 +0000
committermycroft <mycroft@NetBSD.org>2005-03-02 11:05:34 +0000
commitb9c71ccc7a7a46bb033d44ef5bc37cdd12ca6b2c (patch)
treecc1833eeefb0bd55c48be5736d84ce554d5f3502 /sys
parentc9f058f65e52b02fd314b0138def6df16b6ed441 (diff)
Copyright maintenance.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/exec_elf32.c6
-rw-r--r--sys/kern/kern_clock.c8
-rw-r--r--sys/kern/kern_fork.c8
-rw-r--r--sys/kern/kern_sa.c6
-rw-r--r--sys/kern/kern_synch.c8
-rw-r--r--sys/kern/kern_time.c6
-rw-r--r--sys/kern/vfs_subr.c8
7 files changed, 29 insertions, 21 deletions
diff --git a/sys/kern/exec_elf32.c b/sys/kern/exec_elf32.c
index 2457fdd8bd3..31858205435 100644
--- a/sys/kern/exec_elf32.c
+++ b/sys/kern/exec_elf32.c
@@ -1,7 +1,7 @@
-/* $NetBSD: exec_elf32.c,v 1.101 2005/02/26 21:34:55 perry Exp $ */
+/* $NetBSD: exec_elf32.c,v 1.102 2005/03/02 11:05:34 mycroft Exp $ */
/*-
- * Copyright (c) 1994, 2000 The NetBSD Foundation, Inc.
+ * Copyright (c) 1994, 2000, 2005 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
@@ -64,7 +64,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exec_elf32.c,v 1.101 2005/02/26 21:34:55 perry Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exec_elf32.c,v 1.102 2005/03/02 11:05:34 mycroft Exp $");
/* If not included by exec_elf64.c, ELFSIZE won't be defined. */
#ifndef ELFSIZE
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c
index 042ff1a386f..61eadddd1de 100644
--- a/sys/kern/kern_clock.c
+++ b/sys/kern/kern_clock.c
@@ -1,12 +1,14 @@
-/* $NetBSD: kern_clock.c,v 1.93 2005/02/26 21:34:55 perry Exp $ */
+/* $NetBSD: kern_clock.c,v 1.94 2005/03/02 11:05:34 mycroft Exp $ */
/*-
- * Copyright (c) 2000 The NetBSD Foundation, Inc.
+ * Copyright (c) 2000, 2004 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
* NASA Ames Research Center.
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Charles M. Hannum.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -74,7 +76,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_clock.c,v 1.93 2005/02/26 21:34:55 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_clock.c,v 1.94 2005/03/02 11:05:34 mycroft Exp $");
#include "opt_ntp.h"
#include "opt_multiprocessor.h"
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c
index 47b6a595a12..8286b878e65 100644
--- a/sys/kern/kern_fork.c
+++ b/sys/kern/kern_fork.c
@@ -1,12 +1,14 @@
-/* $NetBSD: kern_fork.c,v 1.120 2005/02/26 21:34:55 perry Exp $ */
+/* $NetBSD: kern_fork.c,v 1.121 2005/03/02 11:05:34 mycroft Exp $ */
/*-
- * Copyright (c) 1999, 2001 The NetBSD Foundation, Inc.
+ * Copyright (c) 1999, 2001, 2004 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
* NASA Ames Research Center.
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Charles M. Hannum.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -74,7 +76,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_fork.c,v 1.120 2005/02/26 21:34:55 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_fork.c,v 1.121 2005/03/02 11:05:34 mycroft Exp $");
#include "opt_ktrace.h"
#include "opt_systrace.h"
diff --git a/sys/kern/kern_sa.c b/sys/kern/kern_sa.c
index 9b187fc9c9a..dd21e9fadd1 100644
--- a/sys/kern/kern_sa.c
+++ b/sys/kern/kern_sa.c
@@ -1,7 +1,7 @@
-/* $NetBSD: kern_sa.c,v 1.59 2005/02/26 21:34:55 perry Exp $ */
+/* $NetBSD: kern_sa.c,v 1.60 2005/03/02 11:05:34 mycroft Exp $ */
/*-
- * Copyright (c) 2001 The NetBSD Foundation, Inc.
+ * Copyright (c) 2001, 2004, 2005 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_sa.c,v 1.59 2005/02/26 21:34:55 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_sa.c,v 1.60 2005/03/02 11:05:34 mycroft Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index 164391c8ddf..18bae980e5d 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -1,12 +1,14 @@
-/* $NetBSD: kern_synch.c,v 1.147 2005/02/26 21:34:55 perry Exp $ */
+/* $NetBSD: kern_synch.c,v 1.148 2005/03/02 11:05:34 mycroft Exp $ */
/*-
- * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
+ * Copyright (c) 1999, 2000, 2004 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
* NASA Ames Research Center.
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Charles M. Hannum.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -74,7 +76,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_synch.c,v 1.147 2005/02/26 21:34:55 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_synch.c,v 1.148 2005/03/02 11:05:34 mycroft Exp $");
#include "opt_ddb.h"
#include "opt_ktrace.h"
diff --git a/sys/kern/kern_time.c b/sys/kern/kern_time.c
index 2c5ea9bf68b..3f451956d54 100644
--- a/sys/kern/kern_time.c
+++ b/sys/kern/kern_time.c
@@ -1,7 +1,7 @@
-/* $NetBSD: kern_time.c,v 1.87 2005/02/26 21:34:55 perry Exp $ */
+/* $NetBSD: kern_time.c,v 1.88 2005/03/02 11:05:34 mycroft Exp $ */
/*-
- * Copyright (c) 2000 The NetBSD Foundation, Inc.
+ * Copyright (c) 2000, 2004, 2005 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
@@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.87 2005/02/26 21:34:55 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.88 2005/03/02 11:05:34 mycroft Exp $");
#include "fs_nfs.h"
#include "opt_nfs.h"
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 7b16bff563e..e72b7ab82a8 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1,12 +1,14 @@
-/* $NetBSD: vfs_subr.c,v 1.242 2005/02/26 21:34:56 perry Exp $ */
+/* $NetBSD: vfs_subr.c,v 1.243 2005/03/02 11:05:34 mycroft Exp $ */
/*-
- * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
+ * Copyright (c) 1997, 1998, 2004, 2005 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
* NASA Ames Research Center.
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Charles M. Hannum.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -78,7 +80,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.242 2005/02/26 21:34:56 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.243 2005/03/02 11:05:34 mycroft Exp $");
#include "opt_inet.h"
#include "opt_ddb.h"