summaryrefslogtreecommitdiff
path: root/cpukit/posix/src/timergettime.c (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2016-03-14score: Add and use _Objects_Get_local()Sebastian Huber
This simplifies the handling with local-only objects. Update #2555.
2016-03-04score: Replace watchdog handler implementationSebastian Huber
Use a red-black tree instead of delta chains. Close #2344. Update #2554. Update #2555. Close #2606.
2015-05-20timecounter: Use in RTEMSAlexander Krutwig
Replace timestamp implementation with FreeBSD bintime and timecounters. New test sptests/sptimecounter02. Update #2271.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns
2013-08-01score: Rename tod.h to todimpl.hSebastian Huber
2013-07-26score: Merge tod implementation into one fileSebastian Huber
Delete TOD_MICROSECONDS_PER_SECOND, TOD_MICROSECONDS_TO_TICKS() and TOD_MILLISECONDS_TO_TICKS().
2013-07-22score: Create watchdog implementation headerSebastian Huber
Move implementation specific parts of watchdog.h and watchdog.inl into new header file watchdogimpl.h. The watchdog.h contains now only the application visible API.
2013-07-22posix: Create timer implementation headerSebastian Huber
Move implementation specific parts of timer.h and timer.inl into new header file timerimpl.h. The timer.h contains now only the application visible API.
2013-06-07score: Add and use _Objects_Put()Sebastian Huber
Add and use _Objects_Put_without_thread_dispatch(). These two functions pair with the _Objects_Get() function. This helps to introduce object specific SMP locks to avoid lock contention.
2013-01-10cpukit/posix: Doxygen group is POSIXAPIJoel Sherrill
2012-12-19posix: Doxygen Enhancement Task #6Ayush Awasthi
http://www.google-melange.com/gci/task/view/google/gci2012/7945218
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2008-01-182008-01-18 Jennifer Averett <jennifer.averett@OARcorp.com>Jennifer Averett
* posix/include/rtems/posix/timer.h, posix/src/cleanuppop.c, posix/src/cleanuppush.c, posix/src/mqueueclose.c, posix/src/timergettime.c, posix/src/timersettime.c, score/include/rtems/score/timespec.h:
2007-12-172007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill
* posix/src/timergettime.c: Include rtems/score/timespec.h
2007-12-172007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill
* posix/Makefile.am, posix/preinstall.am, posix/include/rtems/posix/timer.h, score/src/objectget.c: Split POSIX Timer implementation into multiple files. Add obvious error checks for NULL parameters. Attempt to reduce include files. * posix/src/timercreate.c, posix/src/timerdelete.c, posix/src/timergetoverrun.c, posix/src/timergettime.c, posix/src/timerinserthelper.c, posix/src/timersettime.c, posix/src/timertsr.c: New files. * posix/src/ptimer1.c: Removed.