summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coretodadjust.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-04-04doxygen: Rename Score* groups in RTEMSScore*Sebastian Huber1-1/+1
Update #3706
2017-10-09score: Use struct timespec for TODSebastian Huber1-4/+4
Use the timestamps only for uptime based values. Use struct timespec for the absolute time values (TOD). Update #2740.
2016-05-02score: Avoid Giant lock for set time of daySebastian Huber1-14/+8
Update #2555. Update #2630.
2016-05-02score: Streamline set time of day functionsSebastian Huber1-1/+1
Rename _TOD_Set() into _TOD_Set_with_timespec(). Rename _TOD_Set_with_timestamp() into _TOD_Set(). This is now in line with _TOD_Get() and _TOD_Get_as_timespec(). The timestamp is the canonical format.
2015-05-20timecounter: Use in RTEMSAlexander Krutwig1-5/+4
Replace timestamp implementation with FreeBSD bintime and timecounters. New test sptests/sptimecounter02. Update #2271.
2014-07-23Add _TOD_Adjust to SCORE TOD Handler.Joel Sherrill1-0/+51
This lays the proper structure for doing future work on time adjustment algorithms. Any TOD adjustments should be requested at the API level and performed at the SCORE level. Additionally updated a test.