summaryrefslogtreecommitdiffstats
path: root/doc/user/clock.t
diff options
context:
space:
mode:
authorGlenn Humphrey <glenn.humphrey@oarcorp.com>2007-11-28 16:23:59 +0000
committerGlenn Humphrey <glenn.humphrey@oarcorp.com>2007-11-28 16:23:59 +0000
commitae10dbd9b6f57da2e6b8e0cc098620f902cbfd32 (patch)
tree316299f11e30f67ac69921a5e90685550a24b4f5 /doc/user/clock.t
parentRegenerate. (diff)
downloadrtems-ae10dbd9b6f57da2e6b8e0cc098620f902cbfd32.tar.bz2
2007-11-28 Glenn Humphrey <glenn.humphrey@OARcorp.com>
* user/barrier.t, user/clock.t, user/concepts.t, user/conf.t, user/datatypes.t, user/dpmem.t, user/fatal.t, user/init.t, user/mp.t, user/msg.t, user/part.t, user/region.t, user/rtmon.t, user/sem.t, user/task.t, user/timer.t: Corrected various errors in the documentation.
Diffstat (limited to 'doc/user/clock.t')
-rw-r--r--doc/user/clock.t18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/user/clock.t b/doc/user/clock.t
index b51972539e..93a609cce9 100644
--- a/doc/user/clock.t
+++ b/doc/user/clock.t
@@ -49,13 +49,13 @@ and time @value{STRUCTURE} for the native time and date format:
@findex rtems_time_of_day
@example
struct rtems_tod_control @{
- rtems_unsigned32 year; /* greater than 1987 */
- rtems_unsigned32 month; /* 1 - 12 */
- rtems_unsigned32 day; /* 1 - 31 */
- rtems_unsigned32 hour; /* 0 - 23 */
- rtems_unsigned32 minute; /* 0 - 59 */
- rtems_unsigned32 second; /* 0 - 59 */
- rtems_unsigned32 ticks; /* elapsed between seconds */
+ uint32_t year; /* greater than 1987 */
+ uint32_t month; /* 1 - 12 */
+ uint32_t day; /* 1 - 31 */
+ uint32_t hour; /* 0 - 23 */
+ uint32_t minute; /* 0 - 59 */
+ uint32_t second; /* 0 - 59 */
+ uint32_t ticks; /* elapsed between seconds */
@};
typedef struct rtems_tod_control rtems_time_of_day;
@@ -90,8 +90,8 @@ following @value{STRUCTURE}:
@example
@group
typedef struct @{
- rtems_unsigned32 seconds; /* seconds since RTEMS epoch*/
- rtems_unsigned32 microseconds; /* since last second */
+ uint32_t seconds; /* seconds since RTEMS epoch*/
+ uint32_t microseconds; /* since last second */
@} rtems_clock_time_value;
@end group
@end example