mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-10 09:33:46 +00:00
2008-06-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* user/rtmon.t: Change to using new types.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2008-06-06 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* user/rtmon.t: Change to using new types.
|
||||||
|
|
||||||
2008-06-02 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2008-06-02 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* cpu_supplement/.cvsignore, cpu_supplement/Makefile.am,
|
* cpu_supplement/.cvsignore, cpu_supplement/Makefile.am,
|
||||||
|
|||||||
@@ -1227,16 +1227,8 @@ the rate monotonic period id in the following data @value{STRUCTURE}:
|
|||||||
typedef struct @{
|
typedef struct @{
|
||||||
rtems_id owner;
|
rtems_id owner;
|
||||||
rtems_rate_monotonic_period_states state;
|
rtems_rate_monotonic_period_states state;
|
||||||
#ifdef RTEMS_ENABLE_NANOSECOND_RATE_MONOTONIC_STATISTICS
|
rtems_rate_monotonic_period_time_t since_last_period;
|
||||||
struct timespec since_last_period;
|
rtems_thread_cpu_usage_t executed_since_last_period;
|
||||||
#else
|
|
||||||
uint32_t ticks_since_last_period;
|
|
||||||
#endif
|
|
||||||
#ifdef RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS
|
|
||||||
struct timespec executed_since_last_period;
|
|
||||||
#else
|
|
||||||
uint32_t ticks_executed_since_last_period;
|
|
||||||
#endif
|
|
||||||
@} rtems_rate_monotonic_period_status;
|
@} rtems_rate_monotonic_period_status;
|
||||||
@end example
|
@end example
|
||||||
@end ifset
|
@end ifset
|
||||||
@@ -1247,8 +1239,8 @@ type Rate_Monotonic_Period_Status is
|
|||||||
begin
|
begin
|
||||||
Owner : RTEMS.ID;
|
Owner : RTEMS.ID;
|
||||||
State : RTEMS.Rate_Monotonic_Period_States;
|
State : RTEMS.Rate_Monotonic_Period_States;
|
||||||
Ticks_Since_Last_Period : RTEMS.Unsigned32;
|
Since_Last_Period : RTEMS.Unsigned32;
|
||||||
Ticks_Executed_Since_Last_Period : RTEMS.Unsigned32;
|
Executed_Since_Last_Period : RTEMS.Unsigned32;
|
||||||
end record;
|
end record;
|
||||||
@end example
|
@end example
|
||||||
@end ifset
|
@end ifset
|
||||||
|
|||||||
Reference in New Issue
Block a user