<!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-07-27)</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>2010-07-27 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * posix/src/sigsuspend.c: Do not assert unless RTEMS_DEBUG is defined.
</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.2529&r2=text&tr2=1.2530&diff_format=h">M</a></td><td width='1%'>1.2530</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/src/sigsuspend.c.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/posix/src/sigsuspend.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2529 rtems/cpukit/ChangeLog:1.2530
--- rtems/cpukit/ChangeLog:1.2529       Tue Jul 27 11:38:15 2010
+++ rtems/cpukit/ChangeLog      Tue Jul 27 12:37:54 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-07-27    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * posix/src/sigsuspend.c: Do not assert unless RTEMS_DEBUG is defined.
+
</font> 2010-07-27        Vinu Rajashekhar <vinutheraj@gmail.com>
 
        PR 1629/cpukit

<font color='#006600'>diff -u rtems/cpukit/posix/src/sigsuspend.c:1.6 rtems/cpukit/posix/src/sigsuspend.c:1.7
--- rtems/cpukit/posix/src/sigsuspend.c:1.6     Tue Jul 27 11:38:15 2010
+++ rtems/cpukit/posix/src/sigsuspend.c Tue Jul 27 12:37:54 2010
</font><font color='#997700'>@@ -51,7 +51,9 @@
</font>    * sigtimedwait() returns the signal number while sigsuspend()
    * is supposed to return -1 and EINTR when a signal is caught.
    */
<font color='#880000'>-  assert ( status != -1 );
</font><font color='#000088'>+  #if defined(RTEMS_DEBUG)
+    assert( status != -1 );
+  #endif
</font> 
   rtems_set_errno_and_return_minus_one( EINTR );
 }
</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>