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.
This commit is contained in:
Glenn Humphrey
2007-11-28 16:23:59 +00:00
parent 29925d9971
commit ae10dbd9b6
17 changed files with 275 additions and 524 deletions

View File

@@ -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