summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/timespecdividebyinteger.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-08-01score: Rename tod.h to todimpl.hSebastian Huber1-1/+1
2013-07-26score: Merge tod implementation into one fileSebastian Huber1-2/+0
Delete TOD_MICROSECONDS_PER_SECOND, TOD_MICROSECONDS_TO_TICKS() and TOD_MILLISECONDS_TO_TICKS().
2012-11-28score misc: Clean up Doxygen #2 (GCI 2012)Christopher Kerl1-1/+5
This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7986213
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill1-2/+0
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.
2009-11-29Whitespace removal.Ralf Corsepius1-1/+1
2009-11-102009-11-10 Jennifer Averett <jennifer.averett@OARcorp.com>Joel Sherrill1-1/+2
PR 1468/cpukit * score/src/timespecdividebyinteger.c: Rework statement to ensure 64-bit multiplication is used.
2007-05-172007-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-2/+2
* ChangeLog, configure.ac, libcsupport/src/__times.c, libmisc/cpuuse/cpuuse.c, libmisc/stackchk/check.c, rtems/include/rtems/rtems/ratemon.h, rtems/src/ratemongetstatus.c, rtems/src/ratemonperiod.c, rtems/src/ratemonreportstatistics.c, rtems/src/ratemonresetall.c, rtems/src/ratemontimeout.c, score/Makefile.am, score/include/rtems/score/thread.h, score/include/rtems/score/timespec.h, score/src/threaddispatch.c, score/src/threadinitialize.c, score/src/threadtickletimeslice.c, score/src/timespecdivide.c: Add nanoseconds granularity to the rate monotonic period statistics and CPU usage statistics. This capability is enabled by default although may be conditionally disabled by the user. It could be too much overhead on small targets but it does not appear to be bad in early testing. Its impact on code size has not been evaluated either. It is possible that both forms of statistics gathering could be disabled with further tweaking of the conditional compilation. * score/src/timespecdividebyinteger.c: New file.
2007-05-162007-05-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+52
* score/Makefile.am, score/include/rtems/score/timespec.h: Add division and greater than operations for timespecs. * score/src/timespecdivide.c, score/src/timespecgreaterthan.c: New files.