summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/no_cpu/rtems/score/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/no_cpu/rtems/score/types.h')
-rw-r--r--cpukit/score/cpu/no_cpu/rtems/score/types.h21
1 files changed, 15 insertions, 6 deletions
diff --git a/cpukit/score/cpu/no_cpu/rtems/score/types.h b/cpukit/score/cpu/no_cpu/rtems/score/types.h
index 4d5b9bcec2..e3703d976a 100644
--- a/cpukit/score/cpu/no_cpu/rtems/score/types.h
+++ b/cpukit/score/cpu/no_cpu/rtems/score/types.h
@@ -6,7 +6,7 @@
* This include file contains type definitions pertaining to the Intel
* no_cpu processor family.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2006.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -31,19 +31,28 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
+/** This defines an unsigned 64-bit integer. */
+typedef unsigned long long unsigned64;
+/** This defines the type for a priority bit map entry. */
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
+/** This defines the type for a 64 bit signed integer */
+typedef signed long long signed64;
+/** This defines the type for a Boolean value, */
typedef uint32_t boolean; /* Boolean value */
-typedef float single_precision; /* single precision float */
-typedef double double_precision; /* double precision float */
+/** This defines the type for a single precision float. */
+typedef float single_precision;
+/** This defines the type for a double precision float. */
+typedef double double_precision;
+/** This defines the return type for an ISR entry point. */
typedef void no_cpu_isr;
-typedef void ( *no_cpu_isr_entry )( void );
+
+/** This defines the prototype for an ISR entry point. */
+typedef no_cpu_isr ( *no_cpu_isr_entry )( void );
#ifdef __cplusplus
}