summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-09-01 18:24:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-09-01 18:24:57 +0000
commita1bfb335c0cc274513e144da46e203bff29e000b (patch)
treee994694851e8f30b4dd7c93262124d0571605db7 /cpukit/score
parentRemove. (diff)
downloadrtems-a1bfb335c0cc274513e144da46e203bff29e000b.tar.bz2
2011-09-01 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1895/cpukit * posix/src/mqueuerecvsupp.c, posix/src/pthreadjoin.c, score/src/coretodmsecstoticks.c, score/src/coretodusectoticks.c, score/src/timespectoticks.c: Ensure time conversions to ticks do not ignore partial tick and return 1 less than desired.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/src/coretodmsecstoticks.c17
-rw-r--r--cpukit/score/src/coretodusectoticks.c17
-rw-r--r--cpukit/score/src/timespectoticks.c18
3 files changed, 42 insertions, 10 deletions
diff --git a/cpukit/score/src/coretodmsecstoticks.c b/cpukit/score/src/coretodmsecstoticks.c
index cddd3d646d..0b6fa6dede 100644
--- a/cpukit/score/src/coretodmsecstoticks.c
+++ b/cpukit/score/src/coretodmsecstoticks.c
@@ -1,4 +1,4 @@
-/* COPYRIGHT (c) 1989-2008.
+/* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -21,5 +21,18 @@ uint32_t TOD_MILLISECONDS_TO_TICKS(
uint32_t milliseconds
)
{
- return (milliseconds / rtems_configuration_get_milliseconds_per_tick());
+ uint32_t ticks;
+ uint32_t milliseconds_per_tick;
+
+ /**
+ * We should ensure the ticks not be truncated by integer division. We
+ * need to have it be greater than or equal to the requested time. It
+ * should not be shorter.
+ */
+ milliseconds_per_tick = rtems_configuration_get_milliseconds_per_tick();
+ ticks = milliseconds / milliseconds_per_tick;
+ if ( (milliseconds % milliseconds_per_tick) != 0 )
+ ticks += 1;
+
+ return ticks;
}
diff --git a/cpukit/score/src/coretodusectoticks.c b/cpukit/score/src/coretodusectoticks.c
index be2cbd7024..b62e15cd27 100644
--- a/cpukit/score/src/coretodusectoticks.c
+++ b/cpukit/score/src/coretodusectoticks.c
@@ -1,4 +1,4 @@
-/* COPYRIGHT (c) 1989-2008.
+/* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -21,5 +21,18 @@ uint32_t TOD_MICROSECONDS_TO_TICKS(
uint32_t microseconds
)
{
- return (microseconds / rtems_configuration_get_microseconds_per_tick());
+ uint32_t ticks;
+ uint32_t microseconds_per_tick;
+
+ /**
+ * We should ensure the ticks not be truncated by integer division. We
+ * need to have it be greater than or equal to the requested time. It
+ * should not be shorter.
+ */
+ microseconds_per_tick = rtems_configuration_get_microseconds_per_tick();
+ ticks = microseconds / microseconds_per_tick;
+ if ( (microseconds % microseconds_per_tick) != 0 )
+ ticks += 1;
+
+ return ticks;
}
diff --git a/cpukit/score/src/timespectoticks.c b/cpukit/score/src/timespectoticks.c
index ddd82e67a7..10d462976b 100644
--- a/cpukit/score/src/timespectoticks.c
+++ b/cpukit/score/src/timespectoticks.c
@@ -35,16 +35,22 @@ uint32_t _Timespec_To_ticks(
)
{
uint32_t ticks;
+ uint32_t nanoseconds_per_tick;
if ( (time->tv_sec == 0) && (time->tv_nsec == 0) )
return 0;
- ticks = time->tv_sec * TOD_TICKS_PER_SECOND;
+ /**
+ * We should ensure the ticks not be truncated by integer division. We
+ * need to have it be greater than or equal to the requested time. It
+ * should not be shorter.
+ */
+ ticks = time->tv_sec * TOD_TICKS_PER_SECOND;
+ nanoseconds_per_tick = rtems_configuration_get_nanoseconds_per_tick();
+ ticks += time->tv_nsec / nanoseconds_per_tick;
- ticks += time->tv_nsec / rtems_configuration_get_nanoseconds_per_tick();
+ if ( (time->tv_nsec % nanoseconds_per_tick) != 0 )
+ ticks += 1;
- if (ticks)
- return ticks;
-
- return 1;
+ return ticks;
}