<!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-12-13)</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-12-13 Sebastian Huber <sebastian.huber@embedded-brains.de>

        * psxmsgq04/init.c: Fixed allocation of second message queue.
</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.381&r2=text&tr2=1.382&diff_format=h">M</a></td><td width='1%'>1.382</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/psxmsgq04/init.c.diff?r1=text&tr1=1.10&r2=text&tr2=1.11&diff_format=h">M</a></td><td width='1%'>1.11</td><td width='100%'>testsuites/psxtests/psxmsgq04/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/psxtests/ChangeLog:1.381 rtems/testsuites/psxtests/ChangeLog:1.382
--- rtems/testsuites/psxtests/ChangeLog:1.381   Tue Dec 13 04:02:35 2011
+++ rtems/testsuites/psxtests/ChangeLog Tue Dec 13 04:49:13 2011
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-12-13        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
<font color='#000088'>+   * psxmsgq04/init.c: Fixed allocation of second message queue.
+
+2011-12-13     Sebastian Huber <sebastian.huber@embedded-brains.de>
+
</font>   * psxconfig01/init.c: Create more objects.
 
 2011-12-13     Ralf Corsépius <ralf.corsepius@rtems.org>

<font color='#006600'>diff -u rtems/testsuites/psxtests/psxmsgq04/init.c:1.10 rtems/testsuites/psxtests/psxmsgq04/init.c:1.11
--- rtems/testsuites/psxtests/psxmsgq04/init.c:1.10     Tue Feb 22 03:47:35 2011
+++ rtems/testsuites/psxtests/psxmsgq04/init.c  Tue Dec 13 04:49:13 2011
</font><font color='#997700'>@@ -87,13 +87,8 @@
</font>    */
   puts( "Init - Memory allocation error test" );
 
<font color='#880000'>-  sb = rtems_workspace_get_information( &info );
-
-  attr.mq_maxmsg = 1;
-  attr.mq_msgsize = 200;
-
</font>   name = Get_Longest_Name();
<font color='#880000'>-  while ( attr.mq_msgsize > 0 ) {
</font><font color='#000088'>+  do {
</font>     sb = rtems_workspace_allocate( to_alloc, &alloced );
     rtems_test_assert( sb );
 
<font color='#997700'>@@ -102,15 +97,8 @@
</font>     /* free the memory we snagged, then check the status */
     rtems_workspace_free( alloced );
 
<font color='#880000'>-    if ( second_Queue != (-1) )
-      break;
-
-    /* attr.mq_msgsize -= 48; */
</font>     to_alloc -= 4;
<font color='#880000'>-  }
-
-  if ( second_Queue == -1 )
-    rtems_test_exit(0);
</font><font color='#000088'>+  } while ( second_Queue == -1 );
</font> 
   puts( "Init - Message Queue created" );
 
<font color='#997700'>@@ -141,7 +129,7 @@
</font> 
 /* account for message buffers and string names */
 #define CONFIGURE_MESSAGE_BUFFER_MEMORY \
<font color='#880000'>-    CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(1, sizeof(int))
</font><font color='#000088'>+    (2 * CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(1, sizeof(int)))
</font> 
 #define CONFIGURE_MAXIMUM_POSIX_THREADS                   1
 #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES            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-12-13 Ralf Corsépius <ralf.corsepius@rtems.org>

        * complex/docomplex.in: Generate prototype docomplex* prototype.
</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.283&r2=text&tr2=1.284&diff_format=h">M</a></td><td width='1%'>1.284</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/docomplex.in.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/docomplex.in</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.283 rtems/testsuites/libtests/ChangeLog:1.284
--- rtems/testsuites/libtests/ChangeLog:1.283   Thu Dec  8 23:57:06 2011
+++ rtems/testsuites/libtests/ChangeLog Tue Dec 13 04:40:46 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-12-13    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * complex/docomplex.in: Generate prototype docomplex* prototype.
+
</font> 2011-12-09        Ralf Corsépius <ralf.corsepius@rtems.org>
 
        * ftp01/Makefile.am:<span style="background-color: #FF0000"> </span>

<font color='#006600'>diff -u rtems/testsuites/libtests/complex/docomplex.in:1.2 rtems/testsuites/libtests/complex/docomplex.in:1.3
--- rtems/testsuites/libtests/complex/docomplex.in:1.2  Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/complex/docomplex.in      Tue Dec 13 04:40:46 2011
</font><font color='#997700'>@@ -1,5 +1,5 @@
</font> /*
<font color='#880000'>- * Copyright (c) 2010 by
</font><font color='#000088'>+ * Copyright (c) 2010, 2011 by
</font>  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
<font color='#997700'>@@ -17,6 +17,8 @@
</font> #include <complex.h>
 #include <stdio.h>
 
<font color='#000088'>+extern void docomplex@FSUFFIX@ (void);
+
</font> void
 docomplex@FSUFFIX@ (void)
 {
</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>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-12-13 Ralf Corsépius <ralf.corsepius@rtems.org>

        * complex/init.c: Move configuration section.
        * complex/docomplex.c, complex/docomplexf.c, complex/docomplexl.c:
        Regenerate.
</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.284&r2=text&tr2=1.285&diff_format=h">M</a></td><td width='1%'>1.285</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/docomplex.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/docomplex.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/complex/docomplexf.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/docomplexf.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/complex/docomplexl.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/docomplexl.c</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.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>testsuites/libtests/complex/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.284 rtems/testsuites/libtests/ChangeLog:1.285
--- rtems/testsuites/libtests/ChangeLog:1.284   Tue Dec 13 04:40:46 2011
+++ rtems/testsuites/libtests/ChangeLog Tue Dec 13 04:49:25 2011
</font><font color='#997700'>@@ -1,5 +1,8 @@
</font> 2011-12-13        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * complex/init.c: Move configuration section.
+       * complex/docomplex.c, complex/docomplexf.c, complex/docomplexl.c:
+       Regenerate.
</font>   * complex/docomplex.in: Generate prototype docomplex* prototype.
 
 2011-12-09     Ralf Corsépius <ralf.corsepius@rtems.org>

<font color='#006600'>diff -u rtems/testsuites/libtests/complex/docomplex.c:1.2 rtems/testsuites/libtests/complex/docomplex.c:1.3
--- rtems/testsuites/libtests/complex/docomplex.c:1.2   Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/complex/docomplex.c       Tue Dec 13 04:49:25 2011
</font><font color='#997700'>@@ -1,5 +1,5 @@
</font> /*
<font color='#880000'>- * Copyright (c) 2010 by
</font><font color='#000088'>+ * Copyright (c) 2010, 2011 by
</font>  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
<font color='#997700'>@@ -17,6 +17,8 @@
</font> #include <complex.h>
 #include <stdio.h>
 
<font color='#000088'>+extern void docomplex  (void);
+
</font> void
 docomplex  (void)
 {

<font color='#006600'>diff -u rtems/testsuites/libtests/complex/docomplexf.c:1.2 rtems/testsuites/libtests/complex/docomplexf.c:1.3
--- rtems/testsuites/libtests/complex/docomplexf.c:1.2  Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/complex/docomplexf.c      Tue Dec 13 04:49:25 2011
</font><font color='#997700'>@@ -1,5 +1,5 @@
</font> /*
<font color='#880000'>- * Copyright (c) 2010 by
</font><font color='#000088'>+ * Copyright (c) 2010, 2011 by
</font>  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
<font color='#997700'>@@ -17,6 +17,8 @@
</font> #include <complex.h>
 #include <stdio.h>
 
<font color='#000088'>+extern void docomplexf (void);
+
</font> void
 docomplexf (void)
 {

<font color='#006600'>diff -u rtems/testsuites/libtests/complex/docomplexl.c:1.2 rtems/testsuites/libtests/complex/docomplexl.c:1.3
--- rtems/testsuites/libtests/complex/docomplexl.c:1.2  Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/complex/docomplexl.c      Tue Dec 13 04:49:25 2011
</font><font color='#997700'>@@ -1,5 +1,5 @@
</font> /*
<font color='#880000'>- * Copyright (c) 2010 by
</font><font color='#000088'>+ * Copyright (c) 2010, 2011 by
</font>  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
<font color='#997700'>@@ -17,6 +17,8 @@
</font> #include <complex.h>
 #include <stdio.h>
 
<font color='#000088'>+extern void docomplexl (void);
+
</font> void
 docomplexl (void)
 {

<font color='#006600'>diff -u rtems/testsuites/libtests/complex/init.c:1.4 rtems/testsuites/libtests/complex/init.c:1.5
--- rtems/testsuites/libtests/complex/init.c:1.4        Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/complex/init.c    Tue Dec 13 04:49:25 2011
</font><font color='#997700'>@@ -38,6 +38,19 @@
</font> #endif
 
 #if __rtems__
<font color='#000088'>+/* NOTICE: the clock driver is explicitly disabled */
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS            1
+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
+
+#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+
</font> rtems_task Init(
   rtems_task_argument ignored
 )
<font color='#997700'>@@ -55,18 +68,3 @@
</font>   fprintf( stdout, "*** END OF COMPLEX MATH TEST ***\n" );
   exit( 0 );
 }
<font color='#880000'>-
-#if __rtems__
-/* NOTICE: the clock driver is explicitly disabled */
-#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-
-#define CONFIGURE_MAXIMUM_TASKS            1
-#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
-
-#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#define CONFIGURE_INIT
-#include <rtems/confdefs.h>
-#endif
</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>