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

        * mouse01/init.c: Account for extra message buffer size.
</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.279&r2=text&tr2=1.280&diff_format=h">M</a></td><td width='1%'>1.280</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/mouse01/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/mouse01/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.279 rtems/testsuites/libtests/ChangeLog:1.280
--- rtems/testsuites/libtests/ChangeLog:1.279   Wed Oct 26 05:34:11 2011
+++ rtems/testsuites/libtests/ChangeLog Wed Oct 26 06:13:59 2011
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-10-26        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
<font color='#000088'>+   * mouse01/init.c: Account for extra message buffer size.
+
+2011-10-26     Sebastian Huber <sebastian.huber@embedded-brains.de>
+
</font>   * ftp01/init.c: Account for extra FTP worker task stack sizes.
 
 2011-10-22     Ralf Corsépius <ralf.corsepius@rtems.org>

<font color='#006600'>diff -u rtems/testsuites/libtests/mouse01/init.c:1.2 rtems/testsuites/libtests/mouse01/init.c:1.3
--- rtems/testsuites/libtests/mouse01/init.c:1.2        Thu Sep 29 10:54:09 2011
+++ rtems/testsuites/libtests/mouse01/init.c    Wed Oct 26 06:13:59 2011
</font><font color='#997700'>@@ -27,6 +27,8 @@
</font> #include "termios_testdriver_intr.h"
 #include "tmacros.h"
 
<font color='#000088'>+#define UID_MESSAGE_COUNT 10
+
</font> extern const char *Mouse_Type_Long;
 extern const char *Mouse_Type_Short;
 extern const unsigned char Mouse_Actions[];
<font color='#997700'>@@ -68,7 +70,7 @@
</font>   char               name[5] = "mous";
 
   printf( "uid_open_queue() - mouse queue\n" );
<font color='#880000'>-  rc = uid_open_queue( name, 0, 10 );
</font><font color='#000088'>+  rc = uid_open_queue( name, 0, UID_MESSAGE_COUNT );
</font>   rtems_test_assert( rc == 0 );
 
   printf( "uid_register_device() - OK\n");
<font color='#997700'>@@ -155,6 +157,12 @@
</font> #define CONFIGURE_MAXIMUM_TIMERS 2
 #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
 
<font color='#000088'>+#define CONFIGURE_MESSAGE_BUFFER_MEMORY \
+  CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( \
+    UID_MESSAGE_COUNT, \
+    sizeof(struct MW_UID_MESSAGE) \
+  )
+
</font> #define CONFIGURE_RTEMS_INIT_TASKS_TABLE
 #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>