summaryrefslogtreecommitdiffstats
path: root/doc/user/datatypes.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-01 16:07:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-01 16:07:08 +0000
commit2b902665881e4c4aaf39124d39a9c0be193db1a3 (patch)
treef6c7c4acb0b55f3400649bd58faa049a404fd1d1 /doc/user/datatypes.t
parentRemove (Obsolete). (diff)
downloadrtems-2b902665881e4c4aaf39124d39a9c0be193db1a3.tar.bz2
2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com>
* user/datatypes.t: Add C99 uint types.
Diffstat (limited to '')
-rw-r--r--doc/user/datatypes.t26
1 files changed, 26 insertions, 0 deletions
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