diff options
author | Mark Johnston <markj@FreeBSD.org> | 2019-02-26 16:31:47 +0000 |
---|---|---|
committer | Mark Johnston <markj@FreeBSD.org> | 2019-02-26 16:31:47 +0000 |
commit | 6829dae12bb055451fa467da4589c43bd03b1e64 (patch) | |
tree | ae1d14e5634c28e33381881e2ddb628f804de585 /sys/cddl/contrib/opensolaris/uts/aarch64 | |
parent | db53c0adb9a1f700b9bdfa95806c3fa46deb0ecc (diff) | |
download | src-6829dae12bb055451fa467da4589c43bd03b1e64.tar.gz src-6829dae12bb055451fa467da4589c43bd03b1e64.zip |
Remove stub fasttrap implementations.
No platforms except i386, amd64 and powerpc implement fasttrap; the
fasttrap files for other arches do not contain any code and bloat
the output from cscope, so just remove them.
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=344587
Diffstat (limited to 'sys/cddl/contrib/opensolaris/uts/aarch64')
-rw-r--r-- | sys/cddl/contrib/opensolaris/uts/aarch64/dtrace/fasttrap_isa.c | 29 | ||||
-rw-r--r-- | sys/cddl/contrib/opensolaris/uts/aarch64/sys/fasttrap_isa.h | 46 |
2 files changed, 0 insertions, 75 deletions
diff --git a/sys/cddl/contrib/opensolaris/uts/aarch64/dtrace/fasttrap_isa.c b/sys/cddl/contrib/opensolaris/uts/aarch64/dtrace/fasttrap_isa.c deleted file mode 100644 index f5377a895d6c..000000000000 --- a/sys/cddl/contrib/opensolaris/uts/aarch64/dtrace/fasttrap_isa.c +++ /dev/null @@ -1,29 +0,0 @@ -/* - * CDDL HEADER START - * - * The contents of this file are subject to the terms of the - * Common Development and Distribution License (the "License"). - * You may not use this file except in compliance with the License. - * - * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE - * or http://www.opensolaris.org/os/licensing. - * See the License for the specific language governing permissions - * and limitations under the License. - * - * When distributing Covered Code, include this CDDL HEADER in each - * file and include the License file at usr/src/OPENSOLARIS.LICENSE. - * If applicable, add the following below this CDDL HEADER, with the - * fields enclosed by brackets "[]" replaced with your own identifying - * information: Portions Copyright [yyyy] [name of copyright owner] - * - * CDDL HEADER END - */ - -/* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. - */ - -/* - * XXX: Placeholder for AArch64 fasttrap code - */ diff --git a/sys/cddl/contrib/opensolaris/uts/aarch64/sys/fasttrap_isa.h b/sys/cddl/contrib/opensolaris/uts/aarch64/sys/fasttrap_isa.h deleted file mode 100644 index d85426edb417..000000000000 --- a/sys/cddl/contrib/opensolaris/uts/aarch64/sys/fasttrap_isa.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * CDDL HEADER START - * - * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. - * - * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE - * or http://www.opensolaris.org/os/licensing. - * See the License for the specific language governing permissions - * and limitations under the License. - * - * When distributing Covered Code, include this CDDL HEADER in each - * file and include the License file at usr/src/OPENSOLARIS.LICENSE. - * If applicable, add the following below this CDDL HEADER, with the - * fields enclosed by brackets "[]" replaced with your own identifying - * information: Portions Copyright [yyyy] [name of copyright owner] - * - * CDDL HEADER END - */ -/* - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. - */ - -#ifndef _FASTTRAP_ISA_H -#define _FASTTRAP_ISA_H - -#pragma ident "%Z%%M% %I% %E% SMI" - -#include <sys/types.h> - -#ifdef __cplusplus -extern "C" { -#endif - -typedef uint32_t fasttrap_instr_t; - -/* XXX: Place for AArch64 fasttrap headers */ - -#ifdef __cplusplus -} -#endif - -#endif /* _FASTTRAP_ISA_H */ |