diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-10 23:38:00 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-10 23:38:00 +0000 |
commit | 8f419215a70f14774771141c4abff4968fdb6bfe (patch) | |
tree | 2e9f0bf7be58fdd34e5b01650cb2520179a65b82 /usr.bin | |
parent | bc5bffb3c8d9d4e3ec33e5ad984b55507b23e4ec (diff) |
Now that the makefile does not create symlinks to files for archs
which do not build, these files are no longer necessary.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/gprof/alpha.c | 19 | ||||
-rw-r--r-- | usr.bin/gprof/alpha.h | 47 | ||||
-rw-r--r-- | usr.bin/gprof/hppa.c | 18 | ||||
-rw-r--r-- | usr.bin/gprof/hppa.h | 11 | ||||
-rw-r--r-- | usr.bin/gprof/powerpc.c | 19 | ||||
-rw-r--r-- | usr.bin/gprof/powerpc.h | 46 |
6 files changed, 0 insertions, 160 deletions
diff --git a/usr.bin/gprof/alpha.c b/usr.bin/gprof/alpha.c deleted file mode 100644 index 3928262f763..00000000000 --- a/usr.bin/gprof/alpha.c +++ /dev/null @@ -1,19 +0,0 @@ -/* $OpenBSD: alpha.c,v 1.3 2001/03/22 05:18:29 mickey Exp $ */ -/* $NetBSD: alpha.c,v 1.1 1995/04/19 07:24:19 cgd Exp $ */ - -#ifndef lint -static char rcsid[] = "$OpenBSD: alpha.c,v 1.3 2001/03/22 05:18:29 mickey Exp $"; -#endif /* not lint */ - -#include "gprof.h" - -/* - * gprof -c isn't currently supported... - */ -void -findcall( parentp , p_lowpc , p_highpc ) - nltype *parentp; - unsigned long p_lowpc; - unsigned long p_highpc; -{ -} diff --git a/usr.bin/gprof/alpha.h b/usr.bin/gprof/alpha.h deleted file mode 100644 index f1f8c57ca63..00000000000 --- a/usr.bin/gprof/alpha.h +++ /dev/null @@ -1,47 +0,0 @@ -/* $OpenBSD: alpha.h,v 1.2 1996/06/26 05:33:47 deraadt Exp $ */ -/* $NetBSD: alpha.h,v 1.1 1995/04/19 07:24:21 cgd Exp $ */ - -/*- - * Copyright (c) 1991, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * 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. - * - * @(#)hp300.h 8.1 (Berkeley) 6/6/93 - */ - - /* - * offset (in bytes) of the code from the entry address of a routine. - * (see asgnsamples for use and explanation.) - */ -#define OFFSET_OF_CODE 0 -#define UNITS_TO_CODE (OFFSET_OF_CODE / sizeof(UNIT)) - -enum opermodes { dummy }; -typedef enum opermodes operandenum; diff --git a/usr.bin/gprof/hppa.c b/usr.bin/gprof/hppa.c deleted file mode 100644 index d7df49cbec1..00000000000 --- a/usr.bin/gprof/hppa.c +++ /dev/null @@ -1,18 +0,0 @@ -/* $OpenBSD: hppa.c,v 1.1 2001/03/22 05:18:30 mickey Exp $ */ - -#ifndef lint -static char rcsid[] = "$OpenBSD: hppa.c,v 1.1 2001/03/22 05:18:30 mickey Exp $"; -#endif /* not lint */ - -#include "gprof.h" - -/* - * gprof -c isn't currently supported... - */ -void -findcall( parentp , p_lowpc , p_highpc ) - nltype *parentp; - unsigned long p_lowpc; - unsigned long p_highpc; -{ -} diff --git a/usr.bin/gprof/hppa.h b/usr.bin/gprof/hppa.h deleted file mode 100644 index 158bdddcb45..00000000000 --- a/usr.bin/gprof/hppa.h +++ /dev/null @@ -1,11 +0,0 @@ -/* $OpenBSD: hppa.h,v 1.1 2001/03/22 05:18:30 mickey Exp $ */ - - /* - * offset (in bytes) of the code from the entry address of a routine. - * (see asgnsamples for use and explanation.) - */ -#define OFFSET_OF_CODE 0 -#define UNITS_TO_CODE (OFFSET_OF_CODE / sizeof(UNIT)) - -enum opermodes { dummy }; -typedef enum opermodes operandenum; diff --git a/usr.bin/gprof/powerpc.c b/usr.bin/gprof/powerpc.c deleted file mode 100644 index 09a971029de..00000000000 --- a/usr.bin/gprof/powerpc.c +++ /dev/null @@ -1,19 +0,0 @@ -/* $OpenBSD: powerpc.c,v 1.2 2001/03/22 05:18:30 mickey Exp $ */ -/* $NetBSD: m68k.c,v 1.4 1995/04/19 07:16:07 cgd Exp $ */ - -#ifndef lint -static char rcsid[] = "$OpenBSD: powerpc.c,v 1.2 2001/03/22 05:18:30 mickey Exp $"; -#endif /* not lint */ - -#include "gprof.h" - -/* - * gprof -c isn't currently supported... - */ -void -findcall( parentp , p_lowpc , p_highpc ) - nltype *parentp; - unsigned long p_lowpc; - unsigned long p_highpc; -{ -} diff --git a/usr.bin/gprof/powerpc.h b/usr.bin/gprof/powerpc.h deleted file mode 100644 index 4e130fd319c..00000000000 --- a/usr.bin/gprof/powerpc.h +++ /dev/null @@ -1,46 +0,0 @@ -/* $OpenBSD: powerpc.h,v 1.1 1996/12/22 20:24:25 rahnds Exp $ */ - -/*- - * Copyright (c) 1991, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * 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. - * - * @(#)hp300.h 8.1 (Berkeley) 6/6/93 - */ - - /* - * offset (in bytes) of the code from the entry address of a routine. - * (see asgnsamples for use and explanation.) - */ -#define OFFSET_OF_CODE 0 -#define UNITS_TO_CODE (OFFSET_OF_CODE / sizeof(UNIT)) - -enum opermodes { dummy }; -typedef enum opermodes operandenum; |