<!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-23)</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>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-10-23 Ralf Corsépius <ralf.corsepius@rtems.org>

        * page.c: Remove unused var "dirCount".
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libcpu/i386/ChangeLog.diff?r1=text&tr1=1.70&r2=text&tr2=1.71&diff_format=h">M</a></td><td width='1%'>1.71</td><td width='100%'>c/src/lib/libcpu/i386/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libcpu/i386/page.c.diff?r1=text&tr1=1.19&r2=text&tr2=1.20&diff_format=h">M</a></td><td width='1%'>1.20</td><td width='100%'>c/src/lib/libcpu/i386/page.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libcpu/i386/ChangeLog:1.70 rtems/c/src/lib/libcpu/i386/ChangeLog:1.71
--- rtems/c/src/lib/libcpu/i386/ChangeLog:1.70  Mon Mar 14 12:37:00 2011
+++ rtems/c/src/lib/libcpu/i386/ChangeLog       Sun Oct 23 01:40:09 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-10-23    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * page.c: Remove unused var "dirCount".
+
</font> 2011-03-14        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * cpu.h: Remove warnings.

<font color='#006600'>diff -u rtems/c/src/lib/libcpu/i386/page.c:1.19 rtems/c/src/lib/libcpu/i386/page.c:1.20
--- rtems/c/src/lib/libcpu/i386/page.c:1.19     Fri Jan 28 21:41:59 2011
+++ rtems/c/src/lib/libcpu/i386/page.c  Sun Oct 23 01:40:09 2011
</font><font color='#997700'>@@ -336,7 +336,6 @@
</font>   linear_address linearAddr;
   page_table *localPageTable;
   unsigned int lastAddr ;
<font color='#880000'>-  unsigned int dirCount ;
</font>   unsigned char pagingWasEnabled;
 
   pagingWasEnabled = 0;
<font color='#997700'>@@ -348,7 +347,6 @@
</font> 
   linearAddr.address = (unsigned int)mappedAddress;
   lastAddr = (unsigned int)mappedAddress + (size - 1);
<font color='#880000'>-  dirCount = linearAddr.bits.directory;
</font> 
   while (1){
 
</pre>
<p> </p>
<a name='cs2'></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>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-10-23 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libcsupport/src/utimes.c (utimes): Remove casts to time_t.
</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.2964&r2=text&tr2=1.2965&diff_format=h">M</a></td><td width='1%'>1.2965</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/utimes.c.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>cpukit/libcsupport/src/utimes.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2964 rtems/cpukit/ChangeLog:1.2965
--- rtems/cpukit/ChangeLog:1.2964       Thu Oct 20 22:29:23 2011
+++ rtems/cpukit/ChangeLog      Sun Oct 23 01:54:40 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-10-23    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * libcsupport/src/utimes.c (utimes): Remove casts to time_t.
+
</font> 2011-10-21        Ralf Corsépius <ralf.corsepius@rtems.org>
 
        * automake/compile.am: Remove -Werror=...

<font color='#006600'>diff -u rtems/cpukit/libcsupport/src/utimes.c:1.1 rtems/cpukit/libcsupport/src/utimes.c:1.2
--- rtems/cpukit/libcsupport/src/utimes.c:1.1   Thu Jul  1 12:22:03 2010
+++ rtems/cpukit/libcsupport/src/utimes.c       Sun Oct 23 01:54:41 2011
</font><font color='#997700'>@@ -26,8 +26,8 @@
</font>   if ( times == NULL )
     return utime( path, NULL );
 
<font color='#880000'>-  timeinsecs.actime  = (time_t) times[0].tv_sec;
-  timeinsecs.modtime = (time_t) times[1].tv_sec;
</font><font color='#000088'>+  timeinsecs.actime  = times[0].tv_sec;
+  timeinsecs.modtime = times[1].tv_sec;
</font> 
   return utime( path, &timeinsecs );
 }
</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>