summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coretodset.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-31 14:52:19 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-01 16:45:45 +0200
commitdd8815a0c430a99dbdc581b8ec7a390d71b3628d (patch)
tree57eef48f8ee0d6bd1ddf70164eaedeac5ca63119 /cpukit/score/src/coretodset.c
parentscore: Rename tod.h to todimpl.h (diff)
downloadrtems-dd8815a0c430a99dbdc581b8ec7a390d71b3628d.tar.bz2
score: Delete _TOD_Activate and _TOD_Deactivate
Diffstat (limited to 'cpukit/score/src/coretodset.c')
-rw-r--r--cpukit/score/src/coretodset.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpukit/score/src/coretodset.c b/cpukit/score/src/coretodset.c
index f2f743ddc8..ff76581bbd 100644
--- a/cpukit/score/src/coretodset.c
+++ b/cpukit/score/src/coretodset.c
@@ -31,7 +31,6 @@ void _TOD_Set_with_timestamp(
Watchdog_Interval seconds_now;
_Thread_Disable_dispatch();
- _TOD_Deactivate();
seconds_now = _TOD_Seconds_since_epoch();
@@ -44,6 +43,5 @@ void _TOD_Set_with_timestamp(
_TOD.seconds_trigger = nanoseconds;
_TOD.is_set = true;
- _TOD_Activate();
_Thread_Enable_dispatch();
}