summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/include/rtems/rtems/types.h')
-rw-r--r--cpukit/rtems/include/rtems/rtems/types.h27
1 files changed, 15 insertions, 12 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/types.h b/cpukit/rtems/include/rtems/rtems/types.h
index 310c979ef9..3a04f8e7d8 100644
--- a/cpukit/rtems/include/rtems/rtems/types.h
+++ b/cpukit/rtems/include/rtems/rtems/types.h
@@ -1,11 +1,10 @@
/**
* @file rtems/rtems/types.h
+ *
+ * This include file defines the types used by the RTEMS API.
*/
-/*
- * This include file defines the types used by the RTEMS API.
- *
- * COPYRIGHT (c) 1989-1999.
+/* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -18,6 +17,13 @@
#ifndef _RTEMS_RTEMS_TYPES_H
#define _RTEMS_RTEMS_TYPES_H
+/**
+ * @defgroup ClassicTypes Classic API Types
+ *
+ * This encapsulates functionality which XXX
+ */
+/**@{*/
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -50,19 +56,16 @@ typedef Context_Control rtems_context;
typedef Context_Control_fp rtems_context_fp;
typedef CPU_Interrupt_frame rtems_interrupt_frame;
-/*
+/**
* Region information block
*/
-
typedef Heap_Information_block region_information_block;
-/*
+/**
* Time related
*/
-
typedef Watchdog_Interval rtems_interval;
-
/**
* The following record defines the time of control block. This
* control block is used to maintain the current time of day.
@@ -86,16 +89,14 @@ typedef struct {
uint32_t ticks;
} rtems_time_of_day;
-/*
+/**
* Define the type for an RTEMS API task mode.
*/
-
typedef Modes_Control rtems_mode;
/*
* MPCI related entries
*/
-
#if defined(RTEMS_MULTIPROCESSING)
typedef MP_packet_Classes rtems_mp_packet_classes;
typedef MP_packet_Prefix rtems_packet_prefix;
@@ -115,5 +116,7 @@ typedef MPCI_Control rtems_mpci_table;
}
#endif
+/**@}*/
+
#endif
/* end of include file */