<!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-03-09)</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>2011-03-09 Joel Sherrill <joel.sherrill@oarcorp.com>

        * score/src/threadget.c: Remove conditional since this path can be
        tested with and without POSIX enabled.
</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.2767&r2=text&tr2=1.2768&diff_format=h">M</a></td><td width='1%'>1.2768</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadget.c.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>cpukit/score/src/threadget.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2767 rtems/cpukit/ChangeLog:1.2768
--- rtems/cpukit/ChangeLog:1.2767       Tue Mar  8 17:55:24 2011
+++ rtems/cpukit/ChangeLog      Wed Mar  9 10:19:36 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-03-09    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * score/src/threadget.c: Remove conditional since this path can be
+       tested with and without POSIX enabled.
+
</font> 2011-03-08        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        * score/src/objectinitializeinformation.c: Reverse sense of conditional

<font color='#006600'>diff -u rtems/cpukit/score/src/threadget.c:1.16 rtems/cpukit/score/src/threadget.c:1.17
--- rtems/cpukit/score/src/threadget.c:1.16     Fri Jan 28 14:24:53 2011
+++ rtems/cpukit/score/src/threadget.c  Wed Mar  9 10:19:37 2011
</font><font color='#997700'>@@ -1,7 +1,7 @@
</font> /*
  *  Thread Handler - Object Id to Thread Pointer
  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-2010.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#997700'>@@ -76,14 +76,15 @@
</font> 
   api_information = _Objects_Information_table[ the_api ];
   /*
<font color='#880000'>-   *  There is no way for this to happen if POSIX is enabled.
</font><font color='#000088'>+   *  There is no way for this to happen if POSIX is enabled.  But there
+   *  is actually a test case in sp43 for this which trips it whether or
+   *  not POSIX is enabled.  So in the interest of safety, this is left
+   *  on in all configurations.
</font>    */<span style="background-color: #FF0000"> </span>
<font color='#880000'>-  #if !defined(RTEMS_POSIX_API)
-    if ( !api_information ) {
-      *location = OBJECTS_ERROR;
-      goto done;
-    }
-  #endif
</font><font color='#000088'>+  if ( !api_information ) {
+    *location = OBJECTS_ERROR;
+    goto done;
+  }
</font> 
   information = api_information[ the_class ];
   if ( !information ) {
</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>