<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-02-08)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
 <font color='#225522'><em>(on branch rtems-4-10-branch)</em></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-02-08 Ralf Corsépius <ralf.corsepius@rtems.org>

        * sp69/init.c: Use "ld" instead of PRId32 to print
        struct timespec->tv_nsec.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/sptests/ChangeLog.diff?r1=text&tr1=1.430&r2=text&tr2=1.431&diff_format=h">M</a></td><td width='1%'>1.431</td><td width='100%'>testsuites/sptests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/sptests/ChangeLog.diff?r1=text&tr1=1.365.2.3&r2=text&tr2=1.365.2.4&diff_format=h">M</a></td><td width='1%'>1.365.2.4</td><td width='100%'>testsuites/sptests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/sptests/sp69/init.c.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>testsuites/sptests/sp69/init.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/sptests/sp69/init.c.diff?r1=text&tr1=1.3&r2=text&tr2=1.3.2.1&diff_format=h">M</a></td><td width='1%'>1.3.2.1</td><td width='100%'>testsuites/sptests/sp69/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/sptests/ChangeLog:1.430 rtems/testsuites/sptests/ChangeLog:1.431
--- rtems/testsuites/sptests/ChangeLog:1.430    Mon Feb  7 22:49:38 2011
+++ rtems/testsuites/sptests/ChangeLog  Tue Feb  8 01:23:41 2011
</font><font color='#997700'>@@ -1,5 +1,7 @@
</font> 2011-02-08        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * sp69/init.c: Use "ld" instead of PRId32 to print
+       struct timespec->tv_nsec.
</font>   * sp19/inttest.h: Use PRIx32 instead of "lx".
 
 2011-02-02     Joel Sherrill <joel.sherrilL@OARcorp.com>

<font color='#006600'>diff -u rtems/testsuites/sptests/ChangeLog:1.365.2.3 rtems/testsuites/sptests/ChangeLog:1.365.2.4
--- rtems/testsuites/sptests/ChangeLog:1.365.2.3        Mon Feb  7 22:53:03 2011
+++ rtems/testsuites/sptests/ChangeLog  Tue Feb  8 01:23:59 2011
</font><font color='#997700'>@@ -1,5 +1,7 @@
</font> 2011-02-08        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * sp69/init.c: Use "ld" instead of PRId32 to print
+       struct timespec->tv_nsec.
</font>   * sp19/inttest.h: Use PRIx32 instead of "lx".
 
 2011-02-02     Joel Sherrill <joel.sherrilL@OARcorp.com>

<font color='#006600'>diff -u rtems/testsuites/sptests/sp69/init.c:1.3 rtems/testsuites/sptests/sp69/init.c:1.4
--- rtems/testsuites/sptests/sp69/init.c:1.3    Tue Dec 15 12:24:12 2009
+++ rtems/testsuites/sptests/sp69/init.c        Tue Feb  8 01:23:42 2011
</font><font color='#997700'>@@ -107,12 +107,13 @@
</font> 
   /* Check status values. */
   #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
<font color='#000088'>+  /* Note: POSIX mandates struct timespec->tv_nsec to be a "long" */
</font>     printf(
<font color='#880000'>-      "wall time should be ~600000000 is %" PRId32 "\n",
</font><font color='#000088'>+      "wall time should be ~600000000 is %ld\n",
</font>       period_status.since_last_period.tv_nsec
     );
     printf(
<font color='#880000'>-      "cpu time should be ~100000000 is %" PRId32 "\n",
</font><font color='#000088'>+      "cpu time should be ~100000000 is %ld\n",
</font>       period_status.executed_since_last_period.tv_nsec
     );
     rtems_test_assert( period_status.since_last_period.tv_sec == 0 );

<font color='#006600'>diff -u rtems/testsuites/sptests/sp69/init.c:1.3 rtems/testsuites/sptests/sp69/init.c:1.3.2.1
--- rtems/testsuites/sptests/sp69/init.c:1.3    Tue Dec 15 12:24:12 2009
+++ rtems/testsuites/sptests/sp69/init.c        Tue Feb  8 01:24:00 2011
</font><font color='#997700'>@@ -107,12 +107,13 @@
</font> 
   /* Check status values. */
   #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
<font color='#000088'>+  /* Note: POSIX mandates struct timespec->tv_nsec to be a "long" */
</font>     printf(
<font color='#880000'>-      "wall time should be ~600000000 is %" PRId32 "\n",
</font><font color='#000088'>+      "wall time should be ~600000000 is %ld\n",
</font>       period_status.since_last_period.tv_nsec
     );
     printf(
<font color='#880000'>-      "cpu time should be ~100000000 is %" PRId32 "\n",
</font><font color='#000088'>+      "cpu time should be ~100000000 is %ld\n",
</font>       period_status.executed_since_last_period.tv_nsec
     );
     rtems_test_assert( period_status.since_last_period.tv_sec == 0 );
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>