<!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 (2010-05-30)</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>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-05-30 Joel Sherrill <joel.sherrill@oarcorp.com>

        * shared/src/no_cache.c: New file.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libcpu/ChangeLog.diff?r1=text&tr1=1.30&r2=text&tr2=1.31&diff_format=h">M</a></td><td width='1%'>1.31</td><td width='100%'>c/src/lib/libcpu/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libcpu/shared/src/no_cache.c?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">c/src/lib/libcpu/shared/src/no_cache.c</font></td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libcpu/ChangeLog:1.30 rtems/c/src/lib/libcpu/ChangeLog:1.31
--- rtems/c/src/lib/libcpu/ChangeLog:1.30       Fri Oct 10 10:50:15 2008
+++ rtems/c/src/lib/libcpu/ChangeLog    Sun May 30 10:46:17 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-05-30    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * shared/src/no_cache.c: New file.
+
</font> 2008-09-23        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
        * shared/include/utility.h: Removed file.

<font color='#006600'>diff -u /dev/null rtems/c/src/lib/libcpu/shared/src/no_cache.c:1.1
--- /dev/null   Sun May 30 11:11:02 2010
+++ rtems/c/src/lib/libcpu/shared/src/no_cache.c        Sun May 30 10:46:17 2010
</font><font color='#997700'>@@ -0,0 +1,67 @@
</font><font color='#000088'>+/*
+ *  STUB Cache Management Support Routines
+ *
+ *  $Id$
+ */
+
+#include <rtems.h>
+#include "cache_.h"
+
+/*
+ * CACHE MANAGER: The following functions should be implemented
+ * properly for each CPU if it has a cache.  These provide the basic
+ * implementation for the rtems_* cache management routines. If a given
+ * function has no meaning for the CPU, then just let your implementation
+ * do nothing.
+ *<span style="background-color: #FF0000"> </span>
+ * This is just a series of stubs.
+ */
+
+void _CPU_cache_freeze_data ( void ) {}
+void _CPU_cache_unfreeze_data ( void ) {}
+void _CPU_cache_freeze_instruction ( void ) {}
+void _CPU_cache_unfreeze_instruction ( void ) {}
+
+void _CPU_cache_flush_1_data_line (
+  const void * d_addr )
+{
+}
+
+void _CPU_cache_invalidate_1_data_line (
+  const void * d_addr )
+{
+}
+
+void _CPU_cache_flush_entire_data ( void )
+{
+}
+
+void _CPU_cache_invalidate_entire_data ( void )
+{
+}
+
+void _CPU_cache_enable_data ( void )
+{
+}
+
+void _CPU_cache_disable_data ( void )
+{
+}
+
+void _CPU_cache_invalidate_1_instruction_line (
+  const void * i_addr )
+{
+}
+
+void _CPU_cache_invalidate_entire_instruction ( void )
+{
+}
+
+void _CPU_cache_enable_instruction ( void )
+{
+}
+
+void _CPU_cache_disable_instruction ( void )
+{
+}
+/* end of file */
</font></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>