<!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-06-08)</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>2010-06-08 Sebastian Huber <sebastian.huber@embedded-brains.de>
* sp16/task1.c: Update for heap extend changes.
</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.371&r2=text&tr2=1.372&diff_format=h">M</a></td><td width='1%'>1.372</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/sp16/task1.c.diff?r1=text&tr1=1.14&r2=text&tr2=1.15&diff_format=h">M</a></td><td width='1%'>1.15</td><td width='100%'>testsuites/sptests/sp16/task1.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/sptests/ChangeLog:1.371 rtems/testsuites/sptests/ChangeLog:1.372
--- rtems/testsuites/sptests/ChangeLog:1.371 Tue Jun 8 09:06:42 2010
+++ rtems/testsuites/sptests/ChangeLog Tue Jun 8 09:13:27 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-06-08 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ * sp16/task1.c: Update for heap extend changes.
+
</font> 2010-06-08 Sebastian Huber <Sebastian.Huber@embedded-brains.de>
* spfifo01/init.c, spfifo01/spfifo01.scn: Update for IMFS API changes.
<font color='#006600'>diff -u rtems/testsuites/sptests/sp16/task1.c:1.14 rtems/testsuites/sptests/sp16/task1.c:1.15
--- rtems/testsuites/sptests/sp16/task1.c:1.14 Mon Oct 26 06:29:24 2009
+++ rtems/testsuites/sptests/sp16/task1.c Tue Jun 8 09:13:27 2010
</font><font color='#997700'>@@ -229,15 +229,28 @@
</font> fatal_directive_status(
status,
RTEMS_UNSATISFIED,
<font color='#880000'>- "rtems_task_get_segment with no memory left"
</font><font color='#000088'>+ "rtems_region_get_segment with no memory left"
</font> );
<font color='#880000'>- puts( "TA1 - rtems_task_get_segment - RTEMS_UNSATISFIED" );
</font><font color='#000088'>+ puts( "TA1 - rtems_region_get_segment - RTEMS_UNSATISFIED" );
</font>
<font color='#880000'>- puts( "TA1 - rtems_region_extend - extend region 4 by 4K" );
</font><font color='#000088'>+ puts( "TA1 - rtems_region_extend - extend region 4 by 1" );
</font> status = rtems_region_extend(
Region_id[ 4 ],
&Area_4[4096],
<font color='#880000'>- 4096
</font><font color='#000088'>+ 1
+ );
+ fatal_directive_status(
+ status,
+ RTEMS_INVALID_ADDRESS,
+ "rtems_region_extend with too small memory area"
+ );
+ puts( "TA1 - rtems_region_extend - RTEMS_INVALID_ADDRESS" );
+
+ puts( "TA1 - rtems_region_extend - extend region 4 by 4K - 1" );
+ status = rtems_region_extend(
+ Region_id[ 4 ],
+ (char *) &Area_4[4096] + 1,
+ 4096 - 1
</font> );
directive_failed( status, "rtems_region_extend" );
</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>