<!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-10-19)</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>sh</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-10-18 Sebastian Huber <sebastian.huber@embedded-brains.de>

        PR 1939/cpukit
        * rtems/src/ratemonperiod.c: Fixed type mismatch.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2957&r2=text&tr2=1.2958&diff_format=h">M</a></td><td width='1%'>1.2958</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/src/ratemonperiod.c.diff?r1=text&tr1=1.31&r2=text&tr2=1.32&diff_format=h">M</a></td><td width='1%'>1.32</td><td width='100%'>cpukit/rtems/src/ratemonperiod.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2957 rtems/cpukit/ChangeLog:1.2958
--- rtems/cpukit/ChangeLog:1.2957       Tue Oct 18 09:37:46 2011
+++ rtems/cpukit/ChangeLog      Wed Oct 19 02:25:09 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-10-18    Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+       PR 1939/cpukit
+       * rtems/src/ratemonperiod.c: Fixed type mismatch.
+
</font> 2011-10-18        Ralf Corsépius <ralf.corsepius@rtems.org>
 
        * libcsupport/include/rtems/libio.h, libcsupport/src/termios.c:

<font color='#006600'>diff -u rtems/cpukit/rtems/src/ratemonperiod.c:1.31 rtems/cpukit/rtems/src/ratemonperiod.c:1.32
--- rtems/cpukit/rtems/src/ratemonperiod.c:1.31 Thu Sep  1 13:13:54 2011
+++ rtems/cpukit/rtems/src/ratemonperiod.c      Wed Oct 19 02:25:10 2011
</font><font color='#997700'>@@ -129,18 +129,17 @@
</font>    */
   #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
     if (owning_thread == _Thread_Executing) {
<font color='#880000'>-
-      rtems_thread_cpu_usage_t ran;
</font><font color='#000088'>+      Timestamp_Control ran;
</font> 
       /*
        *  Adjust the CPU time used to account for the time since last
        *  context switch.
        */
<font color='#880000'>-      _Timespec_Subtract(
</font><font color='#000088'>+      _Timestamp_Subtract(
</font>         &_Thread_Time_of_last_context_switch, &uptime, &ran
       );
 
<font color='#880000'>-      _Timespec_Add_to( &the_period->cpu_usage_period_initiated, &ran );
</font><font color='#000088'>+      _Timestamp_Add_to( &the_period->cpu_usage_period_initiated, &ran );
</font>     }
   #endif
 
</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>