<!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 examples-v2 (2010-05-11)</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-11 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * main.cc: Do not configure as much when disabling the test for small
        memory targets.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//examples-v2/led/complex1/ChangeLog.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%'>led/complex1/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//examples-v2/led/complex1/main.cc.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>led/complex1/main.cc</td></tr>
</table>
<pre>
<font color='#006600'>diff -u examples-v2/led/complex1/ChangeLog:1.1 examples-v2/led/complex1/ChangeLog:1.2
--- examples-v2/led/complex1/ChangeLog:1.1      Thu Aug  6 15:25:58 2009
+++ examples-v2/led/complex1/ChangeLog  Tue May 11 07:26:04 2010
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2010-05-11    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * main.cc: Do not configure as much when disabling the test for small
+       memory targets.
+
</font> 2008-11-26        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * main.cc: Rework to avoid new GCC error:

<font color='#006600'>diff -u examples-v2/led/complex1/main.cc:1.2 examples-v2/led/complex1/main.cc:1.3
--- examples-v2/led/complex1/main.cc:1.2        Thu Apr 29 16:52:00 2010
+++ examples-v2/led/complex1/main.cc    Tue May 11 07:26:04 2010
</font><font color='#997700'>@@ -45,17 +45,21 @@
</font> 
 #define CONFIGURE_RTEMS_INIT_TASKS_TABLE
 
<font color='#880000'>-#define CONFIGURE_MAXIMUM_TASKS 102
-#define CONFIGURE_MAXIMUM_PERIODS  100
-#define CONFIGURE_MAXIMUM_POSIX_THREADS 2
-#define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES  2
-#define CONFIGURE_MAXIMUM_POSIX_MUTEXES 2
-#define CONFIGURE_EXTRA_TASK_STACKS (32 * 1024)
</font><font color='#000088'>+#if defined(BSP_SMALL_MEMORY)
+  #define CONFIGURE_MAXIMUM_TASKS 1
+#else
+  #define CONFIGURE_MAXIMUM_TASKS 102
+  #define CONFIGURE_MAXIMUM_PERIODS  100
+  #define CONFIGURE_MAXIMUM_POSIX_THREADS 2
+  #define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES  2
+  #define CONFIGURE_MAXIMUM_POSIX_MUTEXES 2
+  #define CONFIGURE_EXTRA_TASK_STACKS (32 * 1024)
</font> 
<font color='#880000'>-#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
-#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 20
</font><font color='#000088'>+  #define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
+  #define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 20
</font> 
<font color='#880000'>-#define CONFIGURE_STACK_CHECKER_ENABLED
</font><font color='#000088'>+  #define CONFIGURE_STACK_CHECKER_ENABLED
+#endif
</font> 
 #define CONFIGURE_INIT
 
</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>