<!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-23)</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>ccj</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-06-23 Chris Johns <chrisj@rtems.org>
PR 1577/filesystem
* libfs/src/pipe/fifo.c: Fixed the error codes returned on open.
</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.2452&r2=text&tr2=1.2453&diff_format=h">M</a></td><td width='1%'>1.2453</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/pipe/fifo.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%'>cpukit/libfs/src/pipe/fifo.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2452 rtems/cpukit/ChangeLog:1.2453
--- rtems/cpukit/ChangeLog:1.2452 Tue Jun 22 22:10:33 2010
+++ rtems/cpukit/ChangeLog Wed Jun 23 00:01:46 2010
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2010-06-23 Chris Johns <chrisj@rtems.org>
+
+ PR 1577/filesystem
+ * libfs/src/pipe/fifo.c: Fixed the error codes returned on open.
+
</font> 2010-06-23 Chris Johns <chrisj@rtems.org>
* rtems/Makefile.am: Remove the stray 'c' file.<span style="background-color: #FF0000"> </span>
<font color='#006600'>diff -u rtems/cpukit/libfs/src/pipe/fifo.c:1.7 rtems/cpukit/libfs/src/pipe/fifo.c:1.8
--- rtems/cpukit/libfs/src/pipe/fifo.c:1.7 Mon Jun 14 00:49:44 2010
+++ rtems/cpukit/libfs/src/pipe/fifo.c Wed Jun 23 00:01:46 2010
</font><font color='#997700'>@@ -104,7 +104,6 @@
</font> if (! pipe->Buffer)
goto err_buf;
<font color='#880000'>- err = -EINTR;
</font> if (rtems_barrier_create(
rtems_build_name ('P', 'I', 'r', c),
RTEMS_BARRIER_MANUAL_RELEASE, 0,
<font color='#997700'>@@ -180,7 +179,7 @@
</font> if (sc == RTEMS_SUCCESSFUL) {
return 0;
} else {
<font color='#880000'>- return -EINTR;
</font><font color='#000088'>+ return -ENOMEM;
</font> }
}
</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>ccj</strong></font>
<font color='#225522'><em>(on branch rtems-4-10-branch)</em></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-06-23 Chris Johns <chrisj@rtems.org>
PR 1577/filesystem
* libfs/src/pipe/fifo.c: Fixed the error codes returned on
open.
</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.2346.2.46&r2=text&tr2=1.2346.2.47&diff_format=h">M</a></td><td width='1%'>1.2346.2.47</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/pipe/fifo.c.diff?r1=text&tr1=1.4.2.1&r2=text&tr2=1.4.2.2&diff_format=h">M</a></td><td width='1%'>1.4.2.2</td><td width='100%'>cpukit/libfs/src/pipe/fifo.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2346.2.46 rtems/cpukit/ChangeLog:1.2346.2.47
--- rtems/cpukit/ChangeLog:1.2346.2.46 Tue Jun 22 22:08:14 2010
+++ rtems/cpukit/ChangeLog Wed Jun 23 00:06:33 2010
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+2010-06-23 Chris Johns <chrisj@rtems.org>
+
+ PR 1577/filesystem
+ * libfs/src/pipe/fifo.c: Fixed the error codes returned on
+ open.
+
</font> 2010-06-23 Chris Johns <chrisj@rtems.org>
* rtems/Makefile.am: Remove the stray 'c' file.
<font color='#006600'>diff -u rtems/cpukit/libfs/src/pipe/fifo.c:1.4.2.1 rtems/cpukit/libfs/src/pipe/fifo.c:1.4.2.2
--- rtems/cpukit/libfs/src/pipe/fifo.c:1.4.2.1 Mon Jun 14 00:49:55 2010
+++ rtems/cpukit/libfs/src/pipe/fifo.c Wed Jun 23 00:06:34 2010
</font><font color='#997700'>@@ -102,7 +102,6 @@
</font> if (! pipe->Buffer)
goto err_buf;
<font color='#880000'>- err = -EINTR;
</font> if (rtems_barrier_create(
rtems_build_name ('P', 'I', 'r', c),
RTEMS_BARRIER_MANUAL_RELEASE, 0,
</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>