1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

Use __FBSDID().

This commit is contained in:
David E. O'Brien 2003-06-10 22:09:23 +00:00
parent af2aaddd7a
commit 753960f7c4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116176
19 changed files with 67 additions and 53 deletions

View File

@ -22,14 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <ddb/ddb.h> #include <ddb/ddb.h>

View File

@ -23,9 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
* *
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
@ -33,6 +31,10 @@
/* /*
* Breakpoints. * Breakpoints.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "opt_comconsole.h" #include "opt_comconsole.h"
#include <sys/param.h> #include <sys/param.h>

View File

@ -22,18 +22,18 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
/* /*
* Command dispatcher. * Command dispatcher.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/linker_set.h> #include <sys/linker_set.h>
#include <sys/lock.h> #include <sys/lock.h>

View File

@ -1,6 +1,4 @@
/* $FreeBSD$ */
/* $NetBSD: db_elf.c,v 1.4 1998/05/03 18:49:54 thorpej Exp $ */ /* $NetBSD: db_elf.c,v 1.4 1998/05/03 18:49:54 thorpej Exp $ */
/*- /*-
* Copyright (c) 1997 The NetBSD Foundation, Inc. * Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved. * All rights reserved.
@ -38,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "opt_ddb.h" #include "opt_ddb.h"
#ifdef DDB_NOKLDSYM #ifdef DDB_NOKLDSYM

View File

@ -22,15 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>

View File

@ -22,14 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <ddb/ddb.h> #include <ddb/ddb.h>

View File

@ -22,15 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
#include <sys/cons.h> #include <sys/cons.h>

View File

@ -23,10 +23,8 @@
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
* *
* $FreeBSD$
* from db_aout.c,v 1.20 1998/06/07 17:09:36 dfr Exp * from db_aout.c,v 1.20 1998/06/07 17:09:36 dfr Exp
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
@ -35,6 +33,9 @@
* Symbol table routines for kld maintained kernels. * Symbol table routines for kld maintained kernels.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "opt_ddb.h" #include "opt_ddb.h"
#ifndef DDB_NOKLDSYM #ifndef DDB_NOKLDSYM

View File

@ -22,10 +22,7 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
@ -33,6 +30,10 @@
/* /*
* Lexical analyzer. * Lexical analyzer.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <ddb/ddb.h> #include <ddb/ddb.h>

View File

@ -22,10 +22,7 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
@ -35,6 +32,9 @@
* Printf and character output for debugger. * Printf and character output for debugger.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
#include <sys/cons.h> #include <sys/cons.h>

View File

@ -23,9 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
* *
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
@ -34,6 +32,10 @@
/* /*
* Miscellaneous printing. * Miscellaneous printing.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <ddb/ddb.h> #include <ddb/ddb.h>

View File

@ -29,9 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * 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 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*
* $FreeBSD$
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
#include <sys/lock.h> #include <sys/lock.h>

View File

@ -22,10 +22,7 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
@ -34,6 +31,10 @@
/* /*
* Commands to run process. * Commands to run process.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <vm/vm.h> #include <vm/vm.h>

View File

@ -22,14 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>

View File

@ -1,4 +1,3 @@
/* /*
* db_sysctl.c * db_sysctl.c
* *
@ -35,10 +34,11 @@
* OF SUCH DAMAGE. * OF SUCH DAMAGE.
* *
* Author: Archie Cobbs <archie@whistle.com> * Author: Archie Cobbs <archie@whistle.com>
*
* $FreeBSD$
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
#include <sys/kernel.h> #include <sys/kernel.h>

View File

@ -22,10 +22,7 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
@ -34,6 +31,10 @@
/* /*
* Trap entry point to kernel debugger. * Trap entry point to kernel debugger.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>

View File

@ -22,15 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>

View File

@ -22,15 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: Richard P. Draves, Carnegie Mellon University * Author: Richard P. Draves, Carnegie Mellon University
* Date: 10/90 * Date: 10/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/kernel.h> #include <sys/kernel.h>
#include <sys/lock.h> #include <sys/lock.h>

View File

@ -22,15 +22,15 @@
* *
* any improvements or extensions that they make and grant Carnegie the * any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes. * rights to redistribute these changes.
*
* $FreeBSD$
*/ */
/* /*
* Author: David B. Golub, Carnegie Mellon University * Author: David B. Golub, Carnegie Mellon University
* Date: 7/90 * Date: 7/90
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <ddb/ddb.h> #include <ddb/ddb.h>