summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sparc/include/rtems/score/types.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-03-08 17:28:31 -0600
committerJoel Sherrill <joel@rtems.org>2018-03-12 14:29:41 -0500
commitc2282d6dca5104ddcd061a033f632bc09daada8d (patch)
tree82015b42949994c330b2567635bd6d24a9e64737 /cpukit/score/cpu/sparc/include/rtems/score/types.h
parentsparc64/include/rtems/score/types.h: Eliminate this file (diff)
downloadrtems-c2282d6dca5104ddcd061a033f632bc09daada8d.tar.bz2
sparc/include/rtems/score/types.h: Eliminate this file
Updates #3327.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/sparc/include/rtems/score/types.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/cpukit/score/cpu/sparc/include/rtems/score/types.h b/cpukit/score/cpu/sparc/include/rtems/score/types.h
deleted file mode 100644
index 6419c9f15f..0000000000
--- a/cpukit/score/cpu/sparc/include/rtems/score/types.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
- * @file
- *
- * @brief SPARC CPU Type Definitions
- *
- * This include file contains type definitions pertaining to the
- * SPARC processor family.
- */
-
-/*
- * COPYRIGHT (c) 1989-2011.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#ifndef _RTEMS_SCORE_TYPES_H
-#define _RTEMS_SCORE_TYPES_H
-
-#include <rtems/score/basedefs.h>
-
-#ifndef ASM
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/** Type that can store a 32-bit integer or a pointer. */
-typedef uintptr_t CPU_Uint32ptr;
-
-/**
- * @brief SPARC ISR handler return type.
- *
- * This is the type which SPARC ISR Handlers return.
- */
-typedef void sparc_isr;
-
-/**
- * @brief SPARC ISR handler prototype.
- *
- * This is the prototype for SPARC ISR Handlers.
- */
-typedef void ( *sparc_isr_entry )( void );
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* !ASM */
-
-#endif