<!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-14)</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>2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* rtems/src/semtranslatereturncode.c, score/src/coremutexsurrender.c:
Now all conditionals have the correct sense and all tests pass.
</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.2710&r2=text&tr2=1.2711&diff_format=h">M</a></td><td width='1%'>1.2711</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/semtranslatereturncode.c.diff?r1=text&tr1=1.21&r2=text&tr2=1.22&diff_format=h">M</a></td><td width='1%'>1.22</td><td width='100%'>cpukit/rtems/src/semtranslatereturncode.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/coremutexsurrender.c.diff?r1=text&tr1=1.24&r2=text&tr2=1.25&diff_format=h">M</a></td><td width='1%'>1.25</td><td width='100%'>cpukit/score/src/coremutexsurrender.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2710 rtems/cpukit/ChangeLog:1.2711
--- rtems/cpukit/ChangeLog:1.2710 Mon Feb 14 11:50:22 2011
+++ rtems/cpukit/ChangeLog Mon Feb 14 14:21:31 2011
</font><font color='#997700'>@@ -1,5 +1,10 @@
</font> 2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
<font color='#000088'>+ * rtems/src/semtranslatereturncode.c, score/src/coremutexsurrender.c:
+ Now all conditionals have the correct sense and all tests pass.
+
+2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
</font> * score/include/rtems/score/coremutex.h,
score/inline/rtems/score/coremutex.inl, score/src/apimutexallocate.c:
Fix direction of conditional and eliminate use of nesting is error
<font color='#006600'>diff -u rtems/cpukit/rtems/src/semtranslatereturncode.c:1.21 rtems/cpukit/rtems/src/semtranslatereturncode.c:1.22
--- rtems/cpukit/rtems/src/semtranslatereturncode.c:1.21 Fri Feb 11 14:38:16 2011
+++ rtems/cpukit/rtems/src/semtranslatereturncode.c Mon Feb 14 14:21:31 2011
</font><font color='#997700'>@@ -64,7 +64,7 @@
</font> const rtems_status_code _Semaphore_Translate_core_mutex_return_code_[] = {
RTEMS_SUCCESSFUL, /* CORE_MUTEX_STATUS_SUCCESSFUL */
RTEMS_UNSATISFIED, /* CORE_MUTEX_STATUS_UNSATISFIED_NOWAIT */
<font color='#880000'>-#if !defined(RTEMS_POSIX_API)
</font><font color='#000088'>+#if defined(RTEMS_POSIX_API)
</font> RTEMS_UNSATISFIED, /* CORE_MUTEX_STATUS_NESTING_NOT_ALLOWED */
#endif
RTEMS_NOT_OWNER_OF_RESOURCE, /* CORE_MUTEX_STATUS_NOT_OWNER_OF_RESOURCE */
<font color='#006600'>diff -u rtems/cpukit/score/src/coremutexsurrender.c:1.24 rtems/cpukit/score/src/coremutexsurrender.c:1.25
--- rtems/cpukit/score/src/coremutexsurrender.c:1.24 Fri Feb 11 14:38:16 2011
+++ rtems/cpukit/score/src/coremutexsurrender.c Mon Feb 14 14:21:31 2011
</font><font color='#997700'>@@ -137,7 +137,7 @@
</font> switch ( the_mutex->Attributes.lock_nesting_behavior ) {
case CORE_MUTEX_NESTING_ACQUIRES:
return CORE_MUTEX_STATUS_SUCCESSFUL;
<font color='#880000'>- #if !defined(RTEMS_POSIX_API)
</font><font color='#000088'>+ #if defined(RTEMS_POSIX_API)
</font> case CORE_MUTEX_NESTING_IS_ERROR:
/* should never occur */
return CORE_MUTEX_STATUS_NESTING_NOT_ALLOWED;
</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>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* psximfs02/init.c: Disable EPERM test which does not work when POSIX
is disabled.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtests/ChangeLog.diff?r1=text&tr1=1.329&r2=text&tr2=1.330&diff_format=h">M</a></td><td width='1%'>1.330</td><td width='100%'>testsuites/psxtests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtests/psximfs02/init.c.diff?r1=text&tr1=1.7&r2=text&tr2=1.8&diff_format=h">M</a></td><td width='1%'>1.8</td><td width='100%'>testsuites/psxtests/psximfs02/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/psxtests/ChangeLog:1.329 rtems/testsuites/psxtests/ChangeLog:1.330
--- rtems/testsuites/psxtests/ChangeLog:1.329 Tue Feb 8 00:37:33 2011
+++ rtems/testsuites/psxtests/ChangeLog Mon Feb 14 14:21:58 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ * psximfs02/init.c: Disable EPERM test which does not work when POSIX
+ is disabled.
+
</font> 2011-02-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* include/pmacros.h: Add PRIxblksize_t, PRIxblkcnt_t.
<font color='#006600'>diff -u rtems/testsuites/psxtests/psximfs02/init.c:1.7 rtems/testsuites/psxtests/psximfs02/init.c:1.8
--- rtems/testsuites/psxtests/psximfs02/init.c:1.7 Mon Aug 30 11:58:12 2010
+++ rtems/testsuites/psxtests/psximfs02/init.c Mon Feb 14 14:21:58 2011
</font><font color='#997700'>@@ -142,6 +142,7 @@
</font> status = seteuid( 10 );
rtems_test_assert( status == 0 );
<font color='#000088'>+#if defined(RTEMS_POSIX_API)
</font> puts( "Attempt chmod on /node -- expect EPERM" );
status = chmod( "/node", S_IRUSR );
rtems_test_assert( status == -1 );
<font color='#997700'>@@ -151,6 +152,10 @@
</font> status = chown( "/node", 10, 10 );
rtems_test_assert( status == -1 );
rtems_test_assert( errno == EPERM );
<font color='#000088'>+#else
+ puts( "Attempt chmod on /node -- EPERM only when POSIX enabled" );
+ puts( "Attempt chown on /node -- EPERM only when POSIX enabled" );
+#endif
</font>
puts( "Changing euid back to 0 [root]" );
status = seteuid( 0 );
</pre>
<p> </p>
<a name='cs3'></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>2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* sp09/Makefile.am: Switch to all managers since this is all of them.
</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.431&r2=text&tr2=1.432&diff_format=h">M</a></td><td width='1%'>1.432</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/sp09/Makefile.am.diff?r1=text&tr1=1.23&r2=text&tr2=1.24&diff_format=h">M</a></td><td width='1%'>1.24</td><td width='100%'>testsuites/sptests/sp09/Makefile.am</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/sptests/ChangeLog:1.431 rtems/testsuites/sptests/ChangeLog:1.432
--- rtems/testsuites/sptests/ChangeLog:1.431 Tue Feb 8 01:23:41 2011
+++ rtems/testsuites/sptests/ChangeLog Mon Feb 14 14:22:23 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ * sp09/Makefile.am: Switch to all managers since this is all of them.
+
</font> 2011-02-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* sp69/init.c: Use "ld" instead of PRId32 to print
<font color='#006600'>diff -u rtems/testsuites/sptests/sp09/Makefile.am:1.23 rtems/testsuites/sptests/sp09/Makefile.am:1.24
--- rtems/testsuites/sptests/sp09/Makefile.am:1.23 Fri Apr 3 07:48:12 2009
+++ rtems/testsuites/sptests/sp09/Makefile.am Mon Feb 14 14:22:23 2011
</font><font color='#997700'>@@ -2,8 +2,7 @@
</font> ## $Id$
##
<font color='#880000'>-MANAGERS = io clock message dual_ported_memory event multi_processor region \
- semaphore signal rate_monotonic timer partition
</font><font color='#000088'>+MANAGERS = all
</font>
rtems_tests_PROGRAMS = sp09
sp09_SOURCES = init.c delay.c isr.c screen01.c screen02.c screen03.c screen04.c \
</pre>
<p> </p>
<a name='cs4'></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>2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* monitor/Makefile.am, monitor02/Makefile.am: Switch to all managers
since this is all of them.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/ChangeLog.diff?r1=text&tr1=1.254&r2=text&tr2=1.255&diff_format=h">M</a></td><td width='1%'>1.255</td><td width='100%'>testsuites/libtests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/monitor/Makefile.am.diff?r1=text&tr1=1.24&r2=text&tr2=1.25&diff_format=h">M</a></td><td width='1%'>1.25</td><td width='100%'>testsuites/libtests/monitor/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/monitor02/Makefile.am.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>testsuites/libtests/monitor02/Makefile.am</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.254 rtems/testsuites/libtests/ChangeLog:1.255
--- rtems/testsuites/libtests/ChangeLog:1.254 Fri Feb 11 02:21:04 2011
+++ rtems/testsuites/libtests/ChangeLog Mon Feb 14 14:24:08 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ * monitor/Makefile.am, monitor02/Makefile.am: Switch to all managers
+ since this is all of them.
+
</font> 2010-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* stringto01/init.c: Redefine LONG_LONG_MAX and LONG_LONG_MIN
<font color='#006600'>diff -u rtems/testsuites/libtests/monitor/Makefile.am:1.24 rtems/testsuites/libtests/monitor/Makefile.am:1.25
--- rtems/testsuites/libtests/monitor/Makefile.am:1.24 Wed Jun 23 18:26:07 2010
+++ rtems/testsuites/libtests/monitor/Makefile.am Mon Feb 14 14:24:08 2011
</font><font color='#997700'>@@ -2,8 +2,7 @@
</font> ## $Id$
##
<font color='#880000'>-MANAGERS = dpmem event io msg mp part region sem signal timer rate_monotonic \
- ext
</font><font color='#000088'>+MANAGERS = all
</font>
rtems_tests_PROGRAMS = monitor
monitor_SOURCES = init.c system.h
<font color='#006600'>diff -u rtems/testsuites/libtests/monitor02/Makefile.am:1.4 rtems/testsuites/libtests/monitor02/Makefile.am:1.5
--- rtems/testsuites/libtests/monitor02/Makefile.am:1.4 Wed Jun 23 18:26:07 2010
+++ rtems/testsuites/libtests/monitor02/Makefile.am Mon Feb 14 14:24:08 2011
</font><font color='#997700'>@@ -2,8 +2,7 @@
</font> ## $Id$
##
<font color='#880000'>-MANAGERS = dpmem event io msg mp part region sem signal timer rate_monotonic \
- ext
</font><font color='#000088'>+MANAGERS = all
</font>
rtems_tests_PROGRAMS = monitor02
monitor02_SOURCES = init.c system.h
</pre>
<p> </p>
<a name='cs5'></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>2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* complex/Makefile.am, complex/init.c: Test now runs.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/ChangeLog.diff?r1=text&tr1=1.255&r2=text&tr2=1.256&diff_format=h">M</a></td><td width='1%'>1.256</td><td width='100%'>testsuites/libtests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/complex/Makefile.am.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%'>testsuites/libtests/complex/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/complex/init.c.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%'>testsuites/libtests/complex/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.255 rtems/testsuites/libtests/ChangeLog:1.256
--- rtems/testsuites/libtests/ChangeLog:1.255 Mon Feb 14 14:24:08 2011
+++ rtems/testsuites/libtests/ChangeLog Mon Feb 14 14:24:27 2011
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
<font color='#000088'>+ * complex/Makefile.am, complex/init.c: Test now runs.
+
+2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
</font> * monitor/Makefile.am, monitor02/Makefile.am: Switch to all managers
since this is all of them.
<font color='#006600'>diff -u rtems/testsuites/libtests/complex/Makefile.am:1.2 rtems/testsuites/libtests/complex/Makefile.am:1.3
--- rtems/testsuites/libtests/complex/Makefile.am:1.2 Tue Nov 30 23:43:07 2010
+++ rtems/testsuites/libtests/complex/Makefile.am Mon Feb 14 14:24:27 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> include $(top_srcdir)/../automake/leaf.am
if HAS_COMPLEX
<font color='#880000'>-complex_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel) -lm
</font><font color='#000088'>+complex_LDADD = -lm
</font>
LINK_OBJS = $(complex_OBJECTS) $(complex_LDADD)
LINK_LIBS = $(complex_LDLIBS)
<font color='#006600'>diff -u rtems/testsuites/libtests/complex/init.c:1.2 rtems/testsuites/libtests/complex/init.c:1.3
--- rtems/testsuites/libtests/complex/init.c:1.2 Wed Feb 2 01:36:25 2011
+++ rtems/testsuites/libtests/complex/init.c Mon Feb 14 14:24:27 2011
</font><font color='#997700'>@@ -58,8 +58,9 @@
</font> #define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 1
<font color='#880000'>-#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
</font><font color='#000088'>+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
</font>
<font color='#000088'>+#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
</font> #define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT
</pre>
<p> </p>
<a name='cs6'></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>2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* math/init.c, mathf/init.c, mathl/init.c: Now run.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/ChangeLog.diff?r1=text&tr1=1.256&r2=text&tr2=1.257&diff_format=h">M</a></td><td width='1%'>1.257</td><td width='100%'>testsuites/libtests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/math/init.c.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>testsuites/libtests/math/init.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/mathf/init.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%'>testsuites/libtests/mathf/init.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/mathl/init.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%'>testsuites/libtests/mathl/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.256 rtems/testsuites/libtests/ChangeLog:1.257
--- rtems/testsuites/libtests/ChangeLog:1.256 Mon Feb 14 14:24:27 2011
+++ rtems/testsuites/libtests/ChangeLog Mon Feb 14 14:50:45 2011
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
<font color='#000088'>+ * math/init.c, mathf/init.c, mathl/init.c: Now run.
+
+2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
</font> * complex/Makefile.am, complex/init.c: Test now runs.
2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
<font color='#006600'>diff -u rtems/testsuites/libtests/math/init.c:1.4 rtems/testsuites/libtests/math/init.c:1.5
--- rtems/testsuites/libtests/math/init.c:1.4 Wed Feb 2 08:00:38 2011
+++ rtems/testsuites/libtests/math/init.c Mon Feb 14 14:50:45 2011
</font><font color='#997700'>@@ -52,8 +52,7 @@
</font>
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
<font color='#880000'>-
-#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
</font><font color='#000088'>+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
</font>
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
<font color='#006600'>diff -u rtems/testsuites/libtests/mathf/init.c:1.1 rtems/testsuites/libtests/mathf/init.c:1.2
--- rtems/testsuites/libtests/mathf/init.c:1.1 Wed Feb 2 07:57:48 2011
+++ rtems/testsuites/libtests/mathf/init.c Mon Feb 14 14:50:46 2011
</font><font color='#997700'>@@ -52,8 +52,7 @@
</font>
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
<font color='#880000'>-
-#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
</font><font color='#000088'>+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
</font>
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
<font color='#006600'>diff -u rtems/testsuites/libtests/mathl/init.c:1.1 rtems/testsuites/libtests/mathl/init.c:1.2
--- rtems/testsuites/libtests/mathl/init.c:1.1 Wed Feb 2 07:58:02 2011
+++ rtems/testsuites/libtests/mathl/init.c Mon Feb 14 14:50:46 2011
</font><font color='#997700'>@@ -52,8 +52,7 @@
</font>
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
<font color='#880000'>-
-#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
</font><font color='#000088'>+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
</font>
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
</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>