summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/ratemonimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-21 10:41:31 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-21 10:44:35 +0100
commit300eaadd42f2d62c28a2b55c8363601d87cc2bb3 (patch)
tree378fde5cdeade74ac0998f91d8a170e3399cf109 /cpukit/rtems/include/rtems/rtems/ratemonimpl.h
parentrtems: Inline _Rate_monotonic_Reset_statistics() (diff)
downloadrtems-300eaadd42f2d62c28a2b55c8363601d87cc2bb3.tar.bz2
rtems: Delete Rate_monotonic_Period_time_t
Variables with this type directly used the _Timestamp_*() functions.
Diffstat (limited to 'cpukit/rtems/include/rtems/rtems/ratemonimpl.h')
-rw-r--r--cpukit/rtems/include/rtems/rtems/ratemonimpl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/ratemonimpl.h b/cpukit/rtems/include/rtems/rtems/ratemonimpl.h
index 46ca2809d5..3141bfa9ae 100644
--- a/cpukit/rtems/include/rtems/rtems/ratemonimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/ratemonimpl.h
@@ -153,9 +153,9 @@ void _Rate_monotonic_Timeout( Watchdog_Control *watchdog );
* and false otherwise.
*/
bool _Rate_monotonic_Get_status(
- Rate_monotonic_Control *the_period,
- Rate_monotonic_Period_time_t *wall_since_last_period,
- Timestamp_Control *cpu_since_last_period
+ const Rate_monotonic_Control *the_period,
+ Timestamp_Control *wall_since_last_period,
+ Timestamp_Control *cpu_since_last_period
);
/**