summaryrefslogtreecommitdiff
path: root/usr.bin/gprof
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2004-02-23 15:32:56 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2004-02-23 15:32:56 +0000
commit84a7b99b4e02a260bf7ff9b540032f4cb7bc612a (patch)
tree85059f7e88bcf124efae7c17bd99cfa18627a8c4 /usr.bin/gprof
parenta28c3ad292f6f6cbe1c4ff05efb3d53eb45f17ff (diff)
Diffstat (limited to 'usr.bin/gprof')
-rw-r--r--usr.bin/gprof/Makefile2
-rw-r--r--usr.bin/gprof/alpha.c2
-rw-r--r--usr.bin/gprof/alpha.h2
-rw-r--r--usr.bin/gprof/aout.c2
-rw-r--r--usr.bin/gprof/arcs.c2
-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.c2
-rw-r--r--usr.bin/gprof/i386.h2
-rw-r--r--usr.bin/gprof/ia64.c2
-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/pathnames.h2
-rw-r--r--usr.bin/gprof/printgprof.c2
-rw-r--r--usr.bin/gprof/printlist.c2
-rw-r--r--usr.bin/gprof/sparc64.c2
-rw-r--r--usr.bin/gprof/sparc64.h2
22 files changed, 22 insertions, 22 deletions
diff --git a/usr.bin/gprof/Makefile b/usr.bin/gprof/Makefile
index 5d776057dfcf..47992b03e419 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.7 2001/12/17 16:04:40 ru Exp $
PROG= gprof
SRCS= gprof.c aout.c arcs.c dfn.c elf.c lookup.c ${MACHINE_ARCH}.c hertz.c \
diff --git a/usr.bin/gprof/alpha.c b/usr.bin/gprof/alpha.c
index c35cd63a5f2e..6ffd4a83c9f2 100644
--- a/usr.bin/gprof/alpha.c
+++ b/usr.bin/gprof/alpha.c
@@ -1,5 +1,5 @@
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/alpha.c,v 1.2 2002/06/30 05:21:21 obrien Exp $");
#include "gprof.h"
diff --git a/usr.bin/gprof/alpha.h b/usr.bin/gprof/alpha.h
index 823d6562d105..bf7c5771255c 100644
--- a/usr.bin/gprof/alpha.h
+++ b/usr.bin/gprof/alpha.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)i386.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/gprof/alpha.h,v 1.2 2002/02/21 07:12:57 bde Exp $
*/
/*
diff --git a/usr.bin/gprof/aout.c b/usr.bin/gprof/aout.c
index 6daa80336c2c..05edf025f966 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.5 2002/10/16 13:50:09 charnier Exp $");
#include <a.out.h>
#include <err.h>
diff --git a/usr.bin/gprof/arcs.c b/usr.bin/gprof/arcs.c
index 262e6bd9f70f..fcee79cac422 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.11 2002/10/16 13:50:09 charnier Exp $");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/dfn.c b/usr.bin/gprof/dfn.c
index 0e23a87a22bf..6658432ceb66 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 2002/10/16 13:50:09 charnier Exp $");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/elf.c b/usr.bin/gprof/elf.c
index b0af431dc5a1..26d5428e8030 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 2002/10/16 13:50:09 charnier Exp $");
#include <sys/types.h>
#include <sys/mman.h>
diff --git a/usr.bin/gprof/gprof.1 b/usr.bin/gprof/gprof.1
index c881c3e2671b..40b718eb39b1 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.23 2002/11/26 11:22:59 ru Exp $
.\"
.Dd June 6, 1993
.Dt GPROF 1
diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c
index 7b857b8bb9d6..257abc2da43f 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.21 2003/10/30 12:21:30 tjr Exp $");
#include <err.h>
#include <limits.h>
diff --git a/usr.bin/gprof/gprof.h b/usr.bin/gprof/gprof.h
index d9dad7af16f5..3de12a72bf91 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.19 2003/10/30 12:21:30 tjr Exp $
*/
#include <sys/types.h>
diff --git a/usr.bin/gprof/hertz.c b/usr.bin/gprof/hertz.c
index 7420cd3a9ca3..54466a56db57 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.2 2002/10/16 13:50:09 charnier Exp $");
#include <sys/time.h>
diff --git a/usr.bin/gprof/i386.c b/usr.bin/gprof/i386.c
index c112763eafe3..1fa361360b8f 100644
--- a/usr.bin/gprof/i386.c
+++ b/usr.bin/gprof/i386.c
@@ -1,5 +1,5 @@
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/i386.c,v 1.2 2002/10/16 13:50:09 charnier Exp $");
#include "gprof.h"
diff --git a/usr.bin/gprof/i386.h b/usr.bin/gprof/i386.h
index 823d6562d105..a6e9bb73aff1 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 2002/02/21 07:12:57 bde Exp $
*/
/*
diff --git a/usr.bin/gprof/ia64.c b/usr.bin/gprof/ia64.c
index c35cd63a5f2e..ba18ba0f5714 100644
--- a/usr.bin/gprof/ia64.c
+++ b/usr.bin/gprof/ia64.c
@@ -1,5 +1,5 @@
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/ia64.c,v 1.2 2002/06/30 05:21:21 obrien Exp $");
#include "gprof.h"
diff --git a/usr.bin/gprof/ia64.h b/usr.bin/gprof/ia64.h
index 823d6562d105..4fe478b8965f 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 2002/02/21 07:12:57 bde Exp $
*/
/*
diff --git a/usr.bin/gprof/kernel.c b/usr.bin/gprof/kernel.c
index fc140877909c..d0f7299efe0b 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.2 2002/06/30 05:21:21 obrien 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..4716453f1b54 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 2002/10/16 13:50:09 charnier Exp $");
#include "gprof.h"
diff --git a/usr.bin/gprof/pathnames.h b/usr.bin/gprof/pathnames.h
index 0dcd78c6af47..7a9d8ff9211c 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 2002/10/16 13:50:09 charnier Exp $
*/
#define _PATH_FLAT_BLURB "/usr/share/misc/gprof.flat"
diff --git a/usr.bin/gprof/printgprof.c b/usr.bin/gprof/printgprof.c
index de1fe49d52e2..93d21c68cf28 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.11 2002/10/16 13:50:09 charnier Exp $");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/printlist.c b/usr.bin/gprof/printlist.c
index c5ecdf7d1633..43b6d4a75954 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.5 2002/10/16 13:50:09 charnier Exp $");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/sparc64.c b/usr.bin/gprof/sparc64.c
index c35cd63a5f2e..7835bbcb6874 100644
--- a/usr.bin/gprof/sparc64.c
+++ b/usr.bin/gprof/sparc64.c
@@ -1,5 +1,5 @@
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/gprof/sparc64.c,v 1.2 2002/10/16 13:50:09 charnier Exp $");
#include "gprof.h"
diff --git a/usr.bin/gprof/sparc64.h b/usr.bin/gprof/sparc64.h
index 823d6562d105..a4b64254fe13 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 2002/03/10 01:25:47 jake Exp $
*/
/*