From 2b902665881e4c4aaf39124d39a9c0be193db1a3 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 1 Dec 2008 16:07:08 +0000 Subject: 2008-12-01 Joel Sherrill * user/datatypes.t: Add C99 uint types. --- doc/user/datatypes.t | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'doc/user/datatypes.t') diff --git a/doc/user/datatypes.t b/doc/user/datatypes.t index b6832f8a5b..ec0fe5b3db 100644 --- a/doc/user/datatypes.t +++ b/doc/user/datatypes.t @@ -297,4 +297,30 @@ entry point of the function implementing the TSR. @item @code{@value{DIRPREFIX}vector_number} is the data type used to manage and manipulate interrupt vector numbers. +@findex uint8_t +@item @code{uint8_t} is the C99 data type that corresponds to unsigned +eight bit integers. This data type is defined by RTEMS in a manner that +ensures it is portable across different target processors. + +@findex uint16_t +@item @code{uint16_t} is the C99 data type that corresponds to unsigned +sixteen bit integers. This data type is defined by RTEMS in a manner +that ensures it is portable across different target processors. + +@findex uint32_t +@item @code{uint32_t} is the C99 data type that corresponds to unsigned +thirty-two bit integers. This data type is defined by RTEMS in a manner +that ensures it is portable across different target processors. + +@findex uint64_t +@item @code{uint64_t} is the C99 data type that corresponds to unsigned +sixty-four bit integers. This data type is defined by RTEMS in a manner +that ensures it is portable across different target processors. + +@findex uintptr_t +@item @code{uintptr_t} is the C99 data type that corresponds to the +unsigned integer type that is of sufficient size to represent addresses +as unsigned integers. This data type is defined by RTEMS in a manner +that ensures it is portable across different target processors. + @end itemize -- cgit v1.2.3