summaryrefslogtreecommitdiff
path: root/usr.bin/gprof
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2009-11-21 06:13:29 +0000
committerKen Smith <kensmith@FreeBSD.org>2009-11-21 06:13:29 +0000
commita4d3b78df842614c46b116fc5a6f470be637dccd (patch)
tree46c6b11aa0464ba59f49361bd26e1a86962c0624 /usr.bin/gprof
parent59dd044d1cb744d3dba6b41c41e196b54e8fd9f8 (diff)
Diffstat (limited to 'usr.bin/gprof')
-rw-r--r--usr.bin/gprof/Makefile2
-rw-r--r--usr.bin/gprof/amd64.h2
-rw-r--r--usr.bin/gprof/aout.c2
-rw-r--r--usr.bin/gprof/arcs.c2
-rw-r--r--usr.bin/gprof/arm.h2
-rw-r--r--usr.bin/gprof/dfn.c2
-rw-r--r--usr.bin/gprof/elf.c2
-rw-r--r--usr.bin/gprof/gprof.12
-rw-r--r--usr.bin/gprof/gprof.c2
-rw-r--r--usr.bin/gprof/gprof.h2
-rw-r--r--usr.bin/gprof/hertz.c2
-rw-r--r--usr.bin/gprof/i386.h2
-rw-r--r--usr.bin/gprof/ia64.h2
-rw-r--r--usr.bin/gprof/kernel.c2
-rw-r--r--usr.bin/gprof/lookup.c2
-rw-r--r--usr.bin/gprof/mips.h2
-rw-r--r--usr.bin/gprof/pathnames.h2
-rw-r--r--usr.bin/gprof/powerpc.h2
-rw-r--r--usr.bin/gprof/printgprof.c2
-rw-r--r--usr.bin/gprof/printlist.c2
-rw-r--r--usr.bin/gprof/sparc64.h2
21 files changed, 21 insertions, 21 deletions
diff --git a/usr.bin/gprof/Makefile b/usr.bin/gprof/Makefile
index a24d9cda6c81..32584bdc4c38 100644
--- a/usr.bin/gprof/Makefile
+++ b/usr.bin/gprof/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/29/93
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/gprof/Makefile,v 1.8.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $
PROG= gprof
SRCS= gprof.c aout.c arcs.c dfn.c elf.c lookup.c hertz.c \
diff --git a/usr.bin/gprof/amd64.h b/usr.bin/gprof/amd64.h
index 823d6562d105..122a80b7d57d 100644
--- a/usr.bin/gprof/amd64.h
+++ b/usr.bin/gprof/amd64.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)i386.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/amd64.h,v 1.2.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/gprof/aout.c b/usr.bin/gprof/aout.c
index 2ccf818f42e0..b5730712671b 100644
--- a/usr.bin/gprof/aout.c
+++ b/usr.bin/gprof/aout.c
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)gprof.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/aout.c,v 1.7.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <netinet/in.h>
diff --git a/usr.bin/gprof/arcs.c b/usr.bin/gprof/arcs.c
index 3be00dffbc6a..bd310081b351 100644
--- a/usr.bin/gprof/arcs.c
+++ b/usr.bin/gprof/arcs.c
@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)arcs.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/arcs.c,v 1.12.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/arm.h b/usr.bin/gprof/arm.h
index 823d6562d105..8d9883ab4b4e 100644
--- a/usr.bin/gprof/arm.h
+++ b/usr.bin/gprof/arm.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)i386.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/arm.h,v 1.1.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/gprof/dfn.c b/usr.bin/gprof/dfn.c
index 0e23a87a22bf..403d09b58f3c 100644
--- a/usr.bin/gprof/dfn.c
+++ b/usr.bin/gprof/dfn.c
@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)dfn.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/dfn.c,v 1.5.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/elf.c b/usr.bin/gprof/elf.c
index b0af431dc5a1..542e5666541b 100644
--- a/usr.bin/gprof/elf.c
+++ b/usr.bin/gprof/elf.c
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)gprof.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/elf.c,v 1.5.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/types.h>
#include <sys/mman.h>
diff --git a/usr.bin/gprof/gprof.1 b/usr.bin/gprof/gprof.1
index 1c4224e5f1b5..d4864733c8ab 100644
--- a/usr.bin/gprof/gprof.1
+++ b/usr.bin/gprof/gprof.1
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)gprof.1 8.1 (Berkeley) 6/6/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/gprof/gprof.1,v 1.30.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $
.\"
.Dd December 25, 2008
.Dt GPROF 1
diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c
index dc9e8a5bb471..3f9135498c7b 100644
--- a/usr.bin/gprof/gprof.c
+++ b/usr.bin/gprof/gprof.c
@@ -44,7 +44,7 @@ static char sccsid[] = "@(#)gprof.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/gprof.c,v 1.25.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <err.h>
#include <limits.h>
diff --git a/usr.bin/gprof/gprof.h b/usr.bin/gprof/gprof.h
index f8592d42776f..01da9bbcd50b 100644
--- a/usr.bin/gprof/gprof.h
+++ b/usr.bin/gprof/gprof.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)gprof.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/gprof.h,v 1.26.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
#include <sys/types.h>
diff --git a/usr.bin/gprof/hertz.c b/usr.bin/gprof/hertz.c
index cf8a3ae68523..b124e9e738bb 100644
--- a/usr.bin/gprof/hertz.c
+++ b/usr.bin/gprof/hertz.c
@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)hertz.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/hertz.c,v 1.3.22.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/time.h>
diff --git a/usr.bin/gprof/i386.h b/usr.bin/gprof/i386.h
index 823d6562d105..8a7f9ce8cad7 100644
--- a/usr.bin/gprof/i386.h
+++ b/usr.bin/gprof/i386.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)i386.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/i386.h,v 1.2.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/gprof/ia64.h b/usr.bin/gprof/ia64.h
index 823d6562d105..6ce87fa8a7cb 100644
--- a/usr.bin/gprof/ia64.h
+++ b/usr.bin/gprof/ia64.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)i386.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/ia64.h,v 1.2.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/gprof/kernel.c b/usr.bin/gprof/kernel.c
index dc456f5f97a9..ca6f5619a714 100644
--- a/usr.bin/gprof/kernel.c
+++ b/usr.bin/gprof/kernel.c
@@ -1,5 +1,5 @@
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/kernel.c,v 1.5.22.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/param.h>
#include <sys/linker.h>
diff --git a/usr.bin/gprof/lookup.c b/usr.bin/gprof/lookup.c
index f51da9829f74..54a36181d9d9 100644
--- a/usr.bin/gprof/lookup.c
+++ b/usr.bin/gprof/lookup.c
@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)lookup.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/lookup.c,v 1.5.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include "gprof.h"
diff --git a/usr.bin/gprof/mips.h b/usr.bin/gprof/mips.h
index e6a1c9caf0cf..c8c764e76fd2 100644
--- a/usr.bin/gprof/mips.h
+++ b/usr.bin/gprof/mips.h
@@ -32,7 +32,7 @@
*
* @(#)mips.h 8.1 (Berkeley) 6/6/93
* From: @(#)sparc.h 5.1 (Berkeley) 7/8/92
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/mips.h,v 1.4.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/gprof/pathnames.h b/usr.bin/gprof/pathnames.h
index 0dcd78c6af47..2ac35b68eb43 100644
--- a/usr.bin/gprof/pathnames.h
+++ b/usr.bin/gprof/pathnames.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)pathnames.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/pathnames.h,v 1.2.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
#define _PATH_FLAT_BLURB "/usr/share/misc/gprof.flat"
diff --git a/usr.bin/gprof/powerpc.h b/usr.bin/gprof/powerpc.h
index 823d6562d105..f71670bfd328 100644
--- a/usr.bin/gprof/powerpc.h
+++ b/usr.bin/gprof/powerpc.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)i386.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/powerpc.h,v 1.1.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/gprof/printgprof.c b/usr.bin/gprof/printgprof.c
index 41c1c1f5c255..93a6e54ab937 100644
--- a/usr.bin/gprof/printgprof.c
+++ b/usr.bin/gprof/printgprof.c
@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)printgprof.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/printgprof.c,v 1.13.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <err.h>
#include <string.h>
diff --git a/usr.bin/gprof/printlist.c b/usr.bin/gprof/printlist.c
index ed68bcc0d313..493df37e7c0f 100644
--- a/usr.bin/gprof/printlist.c
+++ b/usr.bin/gprof/printlist.c
@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)printlist.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/printlist.c,v 1.6.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <err.h>
#include <string.h>
diff --git a/usr.bin/gprof/sparc64.h b/usr.bin/gprof/sparc64.h
index 823d6562d105..59ddd30b809b 100644
--- a/usr.bin/gprof/sparc64.h
+++ b/usr.bin/gprof/sparc64.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)i386.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/sparc64.h,v 1.1.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
/*