From 7af806ac22ad214b80065a6d41afdf289bafeb14 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 10 Dec 2009 20:23:09 +0000 Subject: 2009-12-10 Joel Sherrill PR 1480/cpukit * rtems/src/ratemonperiod.c: Use _Rate_monotonic_Update_statistics() when period is expired, not _Rate_monotonic_Initiate_statistics(). The cound of missed periods was never updated. --- cpukit/ChangeLog | 7 +++++++ cpukit/rtems/src/ratemonperiod.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 30913d39e2..58824cc8e2 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,10 @@ +2009-12-10 Joel Sherrill + + PR 1480/cpukit + * rtems/src/ratemonperiod.c: Use _Rate_monotonic_Update_statistics() + when period is expired, not _Rate_monotonic_Initiate_statistics(). + The cound of missed periods was never updated. + 2009-12-07 Cindy Cicalese PR 1477/cpukit diff --git a/cpukit/rtems/src/ratemonperiod.c b/cpukit/rtems/src/ratemonperiod.c index e59a8a2c62..4ce1cab7f6 100644 --- a/cpukit/rtems/src/ratemonperiod.c +++ b/cpukit/rtems/src/ratemonperiod.c @@ -334,7 +334,7 @@ rtems_status_code rtems_rate_monotonic_period( /* * Update statistics from the concluding period */ - _Rate_monotonic_Initiate_statistics( the_period ); + _Rate_monotonic_Update_statistics( the_period ); _ISR_Enable( level ); -- cgit v1.2.3