summaryrefslogtreecommitdiffstats
path: root/doc/user/rtmon.t
diff options
context:
space:
mode:
Diffstat (limited to 'doc/user/rtmon.t')
-rw-r--r--doc/user/rtmon.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/user/rtmon.t b/doc/user/rtmon.t
index adbb7f5d36..a1374db516 100644
--- a/doc/user/rtmon.t
+++ b/doc/user/rtmon.t
@@ -1149,8 +1149,8 @@ the rate monotonic period id in the following data @value{STRUCTURE}:
@example
typedef struct @{
rtems_rate_monotonic_period_states state;
- rtems_unsigned32 ticks_since_last_period;
- rtems_unsigned32 ticks_executed_since_last_period;
+ uint32_t ticks_since_last_period;
+ uint32_t ticks_executed_since_last_period;
@} rtems_rate_monotonic_period_status;
@end example
@end ifset
@@ -1159,8 +1159,8 @@ typedef struct @{
@example
type Rate_Monotonic_Period_Status is
begin
- State : RTEMS.Rate_Monotonic_Period_States;
- Ticks_Since_Last_Period : RTEMS.Unsigned32;
+ State : RTEMS.Rate_Monotonic_Period_States;
+ Ticks_Since_Last_Period : RTEMS.Unsigned32;
Ticks_Executed_Since_Last_Period : RTEMS.Unsigned32;
end record;
@end example