summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-06-10 22:09:23 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-06-10 22:09:23 +0000
commit753960f7c45791dc61fa2388146b8d1780801ecf (patch)
treed04bff2946053d8e47ffc733929818fe48129885
parentaf2aaddd7a925525dfa2601eccf96fd7d46b7c5d (diff)
Notes
-rw-r--r--sys/ddb/db_access.c7
-rw-r--r--sys/ddb/db_break.c6
-rw-r--r--sys/ddb/db_command.c8
-rw-r--r--sys/ddb/db_elf.c5
-rw-r--r--sys/ddb/db_examine.c6
-rw-r--r--sys/ddb/db_expr.c7
-rw-r--r--sys/ddb/db_input.c6
-rw-r--r--sys/ddb/db_kld.c5
-rw-r--r--sys/ddb/db_lex.c7
-rw-r--r--sys/ddb/db_output.c6
-rw-r--r--sys/ddb/db_print.c6
-rw-r--r--sys/ddb/db_ps.c6
-rw-r--r--sys/ddb/db_run.c7
-rw-r--r--sys/ddb/db_sym.c7
-rw-r--r--sys/ddb/db_sysctl.c6
-rw-r--r--sys/ddb/db_trap.c7
-rw-r--r--sys/ddb/db_variables.c6
-rw-r--r--sys/ddb/db_watch.c6
-rw-r--r--sys/ddb/db_write_cmd.c6
19 files changed, 67 insertions, 53 deletions
diff --git a/sys/ddb/db_access.c b/sys/ddb/db_access.c
index 04de1083bb92..fa61f3dd9ff9 100644
--- a/sys/ddb/db_access.c
+++ b/sys/ddb/db_access.c
@@ -22,14 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <ddb/ddb.h>
diff --git a/sys/ddb/db_break.c b/sys/ddb/db_break.c
index eaa6aecba760..577e338c600a 100644
--- a/sys/ddb/db_break.c
+++ b/sys/ddb/db_break.c
@@ -23,9 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@@ -33,6 +31,10 @@
/*
* Breakpoints.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_comconsole.h"
#include <sys/param.h>
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index 5221fab8faad..ff895c72acf5 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -22,18 +22,18 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
-
/*
* Command dispatcher.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/linker_set.h>
#include <sys/lock.h>
diff --git a/sys/ddb/db_elf.c b/sys/ddb/db_elf.c
index 70376bbd3b56..3493115a87b6 100644
--- a/sys/ddb/db_elf.c
+++ b/sys/ddb/db_elf.c
@@ -1,6 +1,4 @@
-/* $FreeBSD$ */
/* $NetBSD: db_elf.c,v 1.4 1998/05/03 18:49:54 thorpej Exp $ */
-
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -38,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_ddb.h"
#ifdef DDB_NOKLDSYM
diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c
index ccc5ebde64d2..aa89022cfb43 100644
--- a/sys/ddb/db_examine.c
+++ b/sys/ddb/db_examine.c
@@ -22,15 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c
index eb627e7bf0dd..3495a58117c0 100644
--- a/sys/ddb/db_expr.c
+++ b/sys/ddb/db_expr.c
@@ -22,14 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <ddb/ddb.h>
diff --git a/sys/ddb/db_input.c b/sys/ddb/db_input.c
index ce2e694c5816..fa66c0f7bae0 100644
--- a/sys/ddb/db_input.c
+++ b/sys/ddb/db_input.c
@@ -22,15 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/cons.h>
diff --git a/sys/ddb/db_kld.c b/sys/ddb/db_kld.c
index 903a589671af..b811f2100301 100644
--- a/sys/ddb/db_kld.c
+++ b/sys/ddb/db_kld.c
@@ -23,10 +23,8 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $FreeBSD$
* from db_aout.c,v 1.20 1998/06/07 17:09:36 dfr Exp
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@@ -35,6 +33,9 @@
* Symbol table routines for kld maintained kernels.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_ddb.h"
#ifndef DDB_NOKLDSYM
diff --git a/sys/ddb/db_lex.c b/sys/ddb/db_lex.c
index 63adf2b07d7f..b8b2e3b22315 100644
--- a/sys/ddb/db_lex.c
+++ b/sys/ddb/db_lex.c
@@ -22,10 +22,7 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@@ -33,6 +30,10 @@
/*
* Lexical analyzer.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <ddb/ddb.h>
diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c
index e82eea64cc18..b1efb45ae01a 100644
--- a/sys/ddb/db_output.c
+++ b/sys/ddb/db_output.c
@@ -22,10 +22,7 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@@ -35,6 +32,9 @@
* Printf and character output for debugger.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/cons.h>
diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c
index 06e9f43da659..60282ad08278 100644
--- a/sys/ddb/db_print.c
+++ b/sys/ddb/db_print.c
@@ -23,9 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@@ -34,6 +32,10 @@
/*
* Miscellaneous printing.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <ddb/ddb.h>
diff --git a/sys/ddb/db_ps.c b/sys/ddb/db_ps.c
index abc8c33ab687..0b8ae9e4f75e 100644
--- a/sys/ddb/db_ps.c
+++ b/sys/ddb/db_ps.c
@@ -29,9 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/lock.h>
diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c
index a1c0387e7196..79b148af4f62 100644
--- a/sys/ddb/db_run.c
+++ b/sys/ddb/db_run.c
@@ -22,10 +22,7 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@@ -34,6 +31,10 @@
/*
* Commands to run process.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <vm/vm.h>
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c
index 08eb1c066aa8..2ab3ede07f17 100644
--- a/sys/ddb/db_sym.c
+++ b/sys/ddb/db_sym.c
@@ -22,14 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/ddb/db_sysctl.c b/sys/ddb/db_sysctl.c
index bc00e112c415..a8bb5df8f234 100644
--- a/sys/ddb/db_sysctl.c
+++ b/sys/ddb/db_sysctl.c
@@ -1,4 +1,3 @@
-
/*
* db_sysctl.c
*
@@ -35,10 +34,11 @@
* OF SUCH DAMAGE.
*
* Author: Archie Cobbs <archie@whistle.com>
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c
index 4409007de68e..63c92b203c92 100644
--- a/sys/ddb/db_trap.c
+++ b/sys/ddb/db_trap.c
@@ -22,10 +22,7 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@@ -34,6 +31,10 @@
/*
* Trap entry point to kernel debugger.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c
index b985f783d1af..1b283763e177 100644
--- a/sys/ddb/db_variables.c
+++ b/sys/ddb/db_variables.c
@@ -22,15 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c
index 127e3bb4203d..af3e7d51d16b 100644
--- a/sys/ddb/db_watch.c
+++ b/sys/ddb/db_watch.c
@@ -22,15 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: Richard P. Draves, Carnegie Mellon University
* Date: 10/90
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/lock.h>
diff --git a/sys/ddb/db_write_cmd.c b/sys/ddb/db_write_cmd.c
index 3da61d35dd9d..69353c13183e 100644
--- a/sys/ddb/db_write_cmd.c
+++ b/sys/ddb/db_write_cmd.c
@@ -22,15 +22,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
-
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <ddb/ddb.h>