summaryrefslogtreecommitdiffstats
path: root/sys/ddb
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-06-10 22:09:23 +0000
committerobrien <obrien@FreeBSD.org>2003-06-10 22:09:23 +0000
commit62dc1f7c259db5ae67933b1947bfa1c240122792 (patch)
treed04bff2946053d8e47ffc733929818fe48129885 /sys/ddb
parentc26dd9475587567b584fa8511d8a8de24ba27e44 (diff)
downloadFreeBSD-src-62dc1f7c259db5ae67933b1947bfa1c240122792.zip
FreeBSD-src-62dc1f7c259db5ae67933b1947bfa1c240122792.tar.gz
Use __FBSDID().
Diffstat (limited to 'sys/ddb')
-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 04de108..fa61f3d 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 eaa6aec..577e338 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 5221fab..ff895c7 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 70376bb..3493115 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 ccc5ebd..aa89022 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 eb627e7..3495a58 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 ce2e694c..fa66c0f 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 903a589..b811f21 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 63adf2b..b8b2e3b 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 e82eea6..b1efb45 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 06e9f43..60282ad 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 abc8c33..0b8ae9e 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 a1c0387..79b148a 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 08eb1c0..2ab3ede 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 bc00e11..a8bb5df 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 4409007..63c92b2 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 b985f78..1b28376 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 127e3bb..af3e7d5 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 3da61d3..69353c1 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>
OpenPOWER on IntegriCloud