[rtems commit] score: Simplify _Watchdog_Tick()
Sebastian Huber
sebh at rtems.org
Thu Feb 18 05:06:30 UTC 2016
Module: rtems
Branch: master
Commit: 2e71aa41965e175203d9dcd8fb00fe5104d0c737
Changeset: http://git.rtems.org/rtems/commit/?id=2e71aa41965e175203d9dcd8fb00fe5104d0c737
Author: Sebastian Huber <sebastian.huber at embedded-brains.de>
Date: Wed Feb 17 12:52:17 2016 +0100
score: Simplify _Watchdog_Tick()
Move thread dispatch disable check to legacy rtems_clock_tick(). Assert
that thread dispatching is disabled in _Watchdog_Tick(). This is
usually the case, since this function is called in interrupt context by
the clock tick service routine.
---
cpukit/rtems/src/clocktick.c | 5 +++++
cpukit/score/src/watchdogtick.c | 8 ++++----
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/cpukit/rtems/src/clocktick.c b/cpukit/rtems/src/clocktick.c
index a6bf26d..df8012e 100644
--- a/cpukit/rtems/src/clocktick.c
+++ b/cpukit/rtems/src/clocktick.c
@@ -20,6 +20,7 @@
#include <rtems/rtems/clock.h>
#include <rtems/score/timecounter.h>
+#include <rtems/score/threadimpl.h>
rtems_status_code rtems_clock_tick( void )
{
@@ -32,5 +33,9 @@ rtems_status_code rtems_clock_tick( void )
&lock_context
);
+ if ( _Thread_Dispatch_is_enabled() ) {
+ _Thread_Dispatch();
+ }
+
return RTEMS_SUCCESSFUL;
}
diff --git a/cpukit/score/src/watchdogtick.c b/cpukit/score/src/watchdogtick.c
index b9bc3f7..cb68ea2 100644
--- a/cpukit/score/src/watchdogtick.c
+++ b/cpukit/score/src/watchdogtick.c
@@ -12,8 +12,9 @@
* http://www.rtems.org/license/LICENSE.
*/
+#include <rtems/score/assert.h>
#include <rtems/score/schedulerimpl.h>
-#include <rtems/score/threadimpl.h>
+#include <rtems/score/threaddispatch.h>
#include <rtems/score/todimpl.h>
#include <rtems/score/watchdogimpl.h>
@@ -23,12 +24,11 @@
void _Watchdog_Tick( void )
{
+ _Assert( !_Thread_Dispatch_is_enabled() );
+
_TOD_Tickle_ticks();
_Watchdog_Tickle_ticks();
_Scheduler_Tick();
-
- if ( _Thread_Dispatch_is_enabled() )
- _Thread_Dispatch();
}
More information about the vc
mailing list